Python 模块仅在 iPython 中可见
我使用 set PYTHONPATH=%PYTHONPATH%;dictionary_having_modules
使某些模块全局可见。
我有一个使用 import my_module
导入模块的脚本。
当我从 iPython shell 运行脚本时(run my_script.py
),我没有收到任何错误,并且脚本按预期运行,但是当我使用 python my_script.py
我收到错误:
ImportError: No module named my_module
我检查了 pwd
他们使用相同的工作目录。
I have used set PYTHONPATH=%PYTHONPATH%;dictionary_containing_modules
to make some modules globaly visiable.
I have a script importing the modules with import my_module
.
When i run the script from the iPython shell (run my_script.py
), i get no errors and the script runs as intended, but when I run the script from the command promt (windows) with python my_script.py
I get the error:
ImportError: No module named my_module
I checked with pwd
that they use the same working directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请记住,您可以使用
sys 从脚本中动态更改系统路径.path
或site
模块。所以也许你想将它们添加到你的脚本中...或者你想编写一个设置 PYTHONPATH 的 BAT 或 Python 启动器脚本...
或者你想编辑 Windows 环境变量(系统属性 Win 内的某个位置) +中断)。
Remember that you can dynamically change your system path from within your script, using
sys.path
or thesite
module. So maybe you want to add them to your script...Or maybe you want to write a BAT or Python launcher script that sets the PYTHONPATH...
Or you want to edit the Windows environment variables (somewhere inside System properties Win+Break).