Python包导入错误
我正在尝试打包我的模块,但似乎无法让它工作。
我的目录树如下所示:
snappy/
__init__.py
main/
__init__.py
main.py
config.py
...
...
我正在使用的代码是
from snappy.main.config import *
我收到错误:
ImportError: No module named snappy.main.config
知道出了什么问题吗? 这是在 Ubuntu 8.10 上使用 Python 2.5。
在此先感谢您的帮助。
I'm trying to package my modules, but I can't seem to get it working.
My directory tree is something like the following:
snappy/
__init__.py
main/
__init__.py
main.py
config.py
...
...
and the code I'm using is
from snappy.main.config import *
I'm getting the error:
ImportError: No module named snappy.main.config
Any ideas what's going wrong? This is using Python 2.5 on Ubuntu 8.10.
Thanks in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于使用导入的脚本所在的位置以及您的系统 PYTHONPATH。 基本上,要使该导入工作,您应该在 snappy 的父目录中运行脚本(具有导入的脚本),或者您的脚本应该更改 sys.path 以包含它。
./亚历克斯
It depends on where your script using the import resides and your system PYTHONPATH. Basically, to have that import working you should run your script (the one having the import) in the parent directory of snappy or your script should change sys.path to include it.
./alex
snappy
的父目录是否在sys.path
中? 如果不是,那就是我能想到的唯一会导致你的错误的事情。Is the parent directory of
snappy
insys.path
? If it's not, that's the only thing I can think of that would be causing your error.