由于某种原因,我无法导入某个文件。这是我的目录结构:
root_folder/
program_to_run.py
configuration/
..config files
tools/
__init__.py
tools_to_use1/
__init__.py
dependencies/
__init__.py
helper_1.py
... other .py files
unit_tests/
_init__.py
helper_1_test.py
... other unit tests for dependencies
tools_to_use2/
__init__.py
hardware/
__init__.py
helper_2.py
... other .py files
... other .py files
我尝试将helper_2.py
导入helper_1.py
的地方
在helper_1.py我有以下导入语句:
from tools_to_use2.hardware import helper_2.py
但是,当我在program_to_run.py
(在根文件夹中(中使用helper_1.py
时,出现以下错误:
ModuleNotFoundError: No module named 'tools_to_use2'
我假设这与我打包脚本的方式有关?我遵循了这里的结构: https://docs.python.org/3/tutorial/modules.html (6.4 软件包( 但是,我不确定我做错了什么。感谢所有提前回复的人。
我也尝试将模块添加到我的 PYTHON 路径中,但我仍然没有运气。我也尝试过做 sys.insert 技巧,但即使这样对我也不起作用。
这是不可能的。这篇文章 https://stackoverflow.com/a/30673795/10054278 解释它。如果你想这样做,你必须找到一个解决方法。在我第一次分享的链接中,有几个可以工作。我建议你重组你的项目。