Pydev say, “Unresolved import” error

前端 未结 11 1432
梦谈多话
梦谈多话 2020-12-10 17:42

hm.. Sometime, PyDev say \"Unresolved import error\". In my environment

Python2.6.6 Eclipse3.7 PyDev2.2.2

Errors are.

         


        
11条回答
  •  失恋的感觉
    2020-12-10 18:13

    You get an unresolved import if the required module cannot be found. Modules are searched for in the current working directory and the directories listed in sys.path. Your python cannot find the modules pycassa and tweepy it appears.

    Might want to check this: http://klaith.wordpress.com/2009/06/12/pydev-unresolved-import-errors/

提交回复
热议问题