从父文件夹导入时找不到模块?

时间:2020-08-24 12:53:46

标签: python-3.x module directory sys

我知道这个问题已经被问了很多遍了,但是所提出的解决方案似乎都不适合我?

结构为:

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__), '..')))

我在这里仍然遇到相同的错误。发生了什么事?

0 个答案:

没有答案