Pydev Undefined Variable From Import Error
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:
It's probably a bug which is described here: Pydev for Eclipse: Detail: 3132412 - hashlib.md5() - "Undefined variable from import: md5"
So it's ok to use #@UndefinedVariable while code is working.
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"