ModuleNotFoundError:没有模块名称src

时间:2020-04-19 13:09:46

标签: python python-3.x debugging compiler-errors package

我的项目设置如下:

myProject
    src
        __init__.py
        connections.py
        properties.py
        node.py
    __init__.py
    test
        test.py

将属性和连接类导入“ node.py”,如下所述:

 from src.properties import Property
 from src.connections import Connection

当我尝试使用命令“ python3 node.py”编译node.py时,出现以下错误:

ModuleNotFoundError: No module named 'src'

我在做什么错了?

0 个答案:

没有答案