>>> from foo.bar import app
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named foo.bar
我的目录结构:
In /foo:
__init__.py
bar.py
In /foo/tests:
__init__.py
testing.py
在/foo/tests/testing.py
我需要从/foo/bar.py
. ImportError
如果我运行 testing.py 文件,我会得到。
我已经检查sys.path
并包含/foo
和/foo/tests
文件夹。