我知道这个问题已经被问了很多遍了,但是所提出的解决方案似乎都不适合我?
结构为:
folder1
__init__.py
file1.py
folder2
__init__.py
file2.py
我只是想从folder2中的file2.py导入file1.py。
我尝试from folder1 import file1.py
,但我不断得到ModuleNotFoundError: No module named 'folder1'
。
我尝试将以下内容添加到__init__.py
中的folder1
文件中:
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
我在这里仍然遇到相同的错误。发生了什么事?