导入模块时遇到问题

发布于 2024-12-18 07:54:44 字数 172 浏览 2 评论 0原文

我使用 os.chdir() 更改Recommendations.py 文件所在的当前目录。 然后我输入导入建议并收到错误:

ImportError: No module named recommendations.

可能是什么问题?

I use os.chdir() to change the current directory where my recommendations.py file is.
Then I type Import recommendations and I get error:

ImportError: No module named recommendations.

What could be the problem?

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

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

发布评论

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

评论(2

爱情眠于流年 2024-12-25 07:54:44

默认情况下,Python 仅查找初始工作目录(以及其他一些位置)。如果更改当前目录,请将新的工作目录插入到搜索路径中:

sys.path.insert(0, os.getcwd())

Python only looks in the initial working directory (and a few other places) by default. If you change the current directory, insert the new working directory into the search path:

sys.path.insert(0, os.getcwd())
小伙你站住 2024-12-25 07:54:44

Python 不使用当前工作目录来导入模块,除非它在启动时将初始目录添加到路径中。您需要通过设置 PYTHONPATH 环境变量或修改 sys.path 来将该目录添加到 Python 路径中。

Python doesn't use the current working directory to import modules, except insofar as it adds the initial directory to the path when starting up. You need to add the directory to your Python path, either by setting the PYTHONPATH environment variable or by modifying sys.path.

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