Skip to content Skip to sidebar Skip to footer

Pydev Undefined Variable From Import Error

I'm using virtualenv for Django project. From command line I can import modules hashlib and zipfile. But PyDev is reporting unresolved import for those two. (os, sys and email are

Solution 1:

Window -> Preferences -> PyDev -> Editor -> Code Analysis -> Undefined -> Undefined Variable From Import -> Ignore

Then try to close and reopen eclipse again, which worked for me.

Solution 2:

I'd start by removing / re-adding the PyDev Interpreter. I've also seen instances where, on my initial launch of Eclipse the PyDev plugin will fail to load some of my modules (most commonly the wx module) and give me a raft of unresolved import errors. Restarting Eclipse (from the file menu, not closing and reopening) seems to cause it to reload in some way that makes it properly recognize the previously missing modules. HTH.

Solution 3:

Solution 4:

Right Click on your module name >> Py Dev >> Remove Error Markers All my red cross false errors from editors vanished!

Post a Comment for "Pydev Undefined Variable From Import Error"