views:

45

answers:

1

It seems like my Eclipse PyDev does not recognize that Twisted is installed on my system. I can't make auto suggest working. Does anyone know how to solve it?

+1  A: 

go to preferences->Pydev->Interpreter - Python and hit the apply button. That will rescan your modules directory and add any missing modules.

That should fix any normal import errors. Some modules do some runtime magic that PyDev cant follow.

ebt
Two such modules in Twisted are `twisted.internet.reactor` and `twisted.application.internet` (which you can work around by adding them to "forced builtins"). However, everything else should auto-complete just fine without any special effort.
Glyph