Python 模块仅在 iPython 中可见

发布于 2024-10-02 16:34:35 字数 405 浏览 6 评论 0原文

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

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

发布评论

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

评论(1

渡你暖光 2024-10-09 16:34:35

请记住,您可以使用 sys 从脚本中动态更改系统路径.pathsite 模块。所以也许你想将它们添加到你的脚本中...

或者你想编写一个设置 PYTHONPATH 的 BAT 或 Python 启动器脚本...

或者你想编辑 Windows 环境变量(系统属性 Win 内的某个位置) +中断)。

Remember that you can dynamically change your system path from within your script, using sys.path or the site 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).

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