Python import ModuleNotFoundError:没有名为' model'的模块

时间:2018-01-05 08:12:30

标签: python import

我对此克隆的hmm代码存在问题

当我去

python testing/example.py 
Traceback (most recent call last):
  File "testing/example.py", line 2, in <module>
    from model import sensors, general_inf
ModuleNotFoundError: No module named 'model'

为什么导入不起作用? 我可以更改原始代码,但我不理解错误。来自example.py

的三行
from model import sensors, general_inf
from testing import viz, synth
from numpy import shape

1 个答案:

答案 0 :(得分:1)

我在计算机上测试了代码,在将文件example.py移出testing目录之后,它运行了(如图所示)。
 enter image description here
此外,我认为如果您将model的绝对路径添加到sys.path中,可能也可以。(未经过测试)