提问人:terdev 提问时间:8/29/2021 最后编辑:torekterdev 更新时间:8/29/2021 访问量:130
Python ModuleNotFoundError 通过 SSH 克隆存储库时出错
Python ModuleNotFoundError when cloning Repository via SSH
问:
我使用 ssh 克隆了一个存储库并创建了一个新分支。我想从父目录导入本地模块,但总是收到 ModuleNotFoundError。 我已经尝试将父目录添加到路径列表中:
import sys
sys.path.append("./")
import testfile as test
导入所需的模块也会引发 ModuleNotFoundError:
ModuleNotFoundError: No module named 'testfile'
我在这里缺少什么重要的东西吗?
答: 暂无答案
评论
testfile
testfile.py
import testfile as test
testfile
sys.path
../
./