Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一个 python 包 foo 导入到 Aptana 的一个新项目中。我尝试了两种方法:1.将文件夹提升到项目和2.将文件夹导入新项目。
在这两种情况下,当我尝试在子文件夹中运行程序时,都会出现错误:“没有名为 foo.filename 的模块”。父文件夹称为 foo。代码是:
从 foo.filename 导入 *
在 Aptana 之外执行此文件时没有引用错误。
我怎样才能解决这个问题?
确保包中的每个文件夹都包含:
__init__.py file.
如果包文件夹不在项目根源目录中,您可能需要将其添加到 PYTHONPATH 环境变量中。