Python包导入错误

发布于 2024-07-13 15:47:53 字数 430 浏览 8 评论 0原文

我正在尝试打包我的模块,但似乎无法让它工作。

我的目录树如下所示:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮倦 2024-07-20 15:47:53

这取决于使用导入的脚本所在的位置以及您的系统 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

海夕 2024-07-20 15:47:53

snappy的父目录是否在sys.path中? 如果不是,那就是我能想到的唯一会导致你的错误的事情。

Is the parent directory of snappy in sys.path? If it's not, that's the only thing I can think of that would be causing your error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文