导入模块时遇到问题
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,Python 仅查找初始工作目录(以及其他一些位置)。如果更改当前目录,请将新的工作目录插入到搜索路径中:
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:
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 modifyingsys.path
.