“没有名为的模块”在 /home 目录外部导入时 Python 出错

发布于 2024-12-02 12:13:13 字数 545 浏览 1 评论 0原文

可能这是一个愚蠢的问题,但我一直无法弄清楚。

当我编写以下内容时,我收到 ImportError: No module named etree.ElementTree

#!/usr/bin/python3.2
import xml.etree.ElementTree as etree
tree = etree.parse('feed.xml')
root = tree.getroot()

如果我在 /home//home/中运行相同的脚本;/,它工作正常,但是当我当前的工作目录是 /home/// 时,我得到上述内容 错误。

这里发生了什么?

附加信息:我正在运行 Ubuntu 11.04 和 Python 3.2

提前致谢。

Probably this is a silly issue, but I haven't been able to figure it out.

I'm getting ImportError: No module named etree.ElementTree when I write:

#!/usr/bin/python3.2
import xml.etree.ElementTree as etree
tree = etree.parse('feed.xml')
root = tree.getroot()

If I run this same script in /home/ or /home/<user>/, it works fine but when my current working directory is /home/<user>/<some_directory>/<some_subdirectory>, I get the above mentioned error.

What is happening here?

Additional info: I'm running Ubuntu 11.04 and Python 3.2

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你又不是我 2024-12-09 12:13:13

尝试在Python可以工作的地方和不可以工作的地方运行Python,并比较在这两个位置运行Python时的sys.path的值。

我的第一个猜测是您将 $PYTHONSTARTUP 设置为取决于工作目录的内容。

Try running Python in the place where it works and the place where it doesn't work, and compare the values of sys.path when running Python in those two locations.

My first guess would be that you have $PYTHONSTARTUP set to something that depends on the working directory.

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