3
我用谷歌App Engine的項目並在該項目的工作我無法使用此導入:的Python導入錯誤:沒有模塊名爲資源
import resource
我收到此錯誤:
ImportError: No module named resource
不過,如果我火起來的終端並運行此代碼,它工作正常:
$ python
Python 2.7.3 (v2.7.3:70274d53c1dd, Apr 9 2012, 20:52:43)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import resource
項目的根文件夾不哈ve _ init _ .py文件這是許多其他答案的建議。我使用Aptana 3,OSX 10.8.2和Python 2.7.3。
爲什麼導入不能在我的網站上工作,但在解釋器中工作?
您確定Google App Engine使用相同版本的Python運行嗎? –
是的,它使用/usr/local/bin/python2.7,並且當我使用解釋器的完整路徑時,我可以導入資源 – adam
確保您的pythonpath已正確配置爲包含GAE所在的目錄。如果不是,使用'sys.path.append('path/to/GAE /')' – inspectorG4dget