ModuleNotFoundError: No module named - Python
ModuleNotFoundError: No module named - Python
有人可以帮忙解决这个错误吗?我已经尝试了各种方法来在 Python 中导入模块,但到目前为止还没有奏效。我的目录结构如下:
|__folder1:
| |__folder1a
| |___inner_file.py
|__outer_file.py
我想将 outer_file.py
中的 Class 导入 inner_file.py
。但是,我一直收到错误 ModuleNotFoundError: No module named
.
我已经在 GeeksforGeeks 上尝试了此 link 中的所有选项。谢谢。
容易
import sys,os
BASE = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.insert(0, BASE)
有人可以帮忙解决这个错误吗?我已经尝试了各种方法来在 Python 中导入模块,但到目前为止还没有奏效。我的目录结构如下:
|__folder1:
| |__folder1a
| |___inner_file.py
|__outer_file.py
我想将 outer_file.py
中的 Class 导入 inner_file.py
。但是,我一直收到错误 ModuleNotFoundError: No module named
.
我已经在 GeeksforGeeks 上尝试了此 link 中的所有选项。谢谢。
容易
import sys,os
BASE = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.insert(0, BASE)