我正在使用 Google App Engine 项目,在项目中我无法使用此导入:
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
项目的根文件夹没有_ init _ .py 文件,这是许多其他答案所暗示的。我使用 Aptana 3、OSX 10.8.2 和 Python 2.7.3。
为什么导入在我的网站中不起作用,但在解释器中起作用?