我经常运行python2,但我正在玩python3。现在我很困惑为什么我收到这个错误。
当我在./test_web_events.py
目录中运行命令tests
时,我得到:
Traceback (most recent call last):
File "./test_web_events.py", line 21, in <module>
import qe.util.scratchstore as scratchstore
ImportError: No module named 'qe'
但是我的项目结构中有qe
目录:
/python_lib
Makefile
/qe
__init__.py
/tests
__init__.py
test_web_events.py
/util
__init__.py
scratchstore.py
/trinity
__init__.py
我尝试将/tests
目录移至/python_lib
,但我仍然遇到同样的错误:
MTVL1289dd026:python_lib bli1$ ls
Makefile qe rundata setup.sh tests
MTVL1289dd026:python_lib bli1$ python3 tests/test_web_events.py
Traceback (most recent call last):
File "tests/test_web_events.py", line 21, in <module>
import qe.util.scratchstore as scratchstore
ImportError: No module named 'qe'
这是我的sys.path
for python2
>>> import sys
>>> print sys.path
['', '/Library/Python/2.7/site-packages/pip-1.5.6-py2.7.egg', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC', '/Library/Python/2.7/site-packages']
sys.path
for python3
>>> print(sys.path)
['', '/Library/Frameworks/Python.framework/Versions/3.4/lib/python34.zip', '/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4', '/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/plat-darwin', '/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/lib-dynload', '/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages']
答案 0 :(得分:2)
这很可能是因为您尚未将/python_lib/qe
添加到PYTHONPATH
。
当您尝试导入模块时,解释器只会在一定数量的地方查找它,您无法随意尝试从任何地方导入模块。
最常见的方法是通过pip
安装软件包,使模块与.py
文件位于同一目录中,或者将该模块的路径添加到{ {1}}。
请参阅:https://docs.python.org/2/tutorial/modules.html#the-module-search-path
似乎后一种情况很可能是你想要做的。这将取决于您的操作系统,但谷歌搜索它应该是直截了当的。
答案 1 :(得分:2)
问题是/python_lib
不在Python路径中。 Python 2和3上的行为相同。
通常,do not run scripts from within (inside) a Python package,从顶级目录运行它们:
/python_lib$ python -m qe.tests.test_web_events
因此/python_lib
位于Python路径中,而/python_lib/qe/tests
则不是。它假定有tests/__init__.py
个文件。
请勿手动修改sys.path
。它可能会导致与导入模块相关的细微错误。有更好的选择,例如,如果您不想从/python_lib
运行脚本,只需安装开发版本:
(your_virtualenv)/python_lib$ pip install -e .
答案 2 :(得分:1)
确保所有包文件夹中都有__init__.py
个文件,以便与
/python_lib
Makefile
/qe
/tests
test_web_events.py
/util
__init__.py <------------ create this file
scratchstore.py
/trinity
__init__.py
然后是你cd
到python_lib
文件夹并运行``export PYTHONPATH =`pwd```
答案 3 :(得分:-1)
只需#!/usr/bin/env python
将此添加到您的所有脚本中。确保它在顶部。喜欢;
#!/usr/bin/env python
import qe
我假设你将Python 3添加到路径,如果你这样做,唯一的问题是这个。您执行不需要init.py
或sys.path或其他任何操作。如果你添加 Python 3到路径,这条线已经自动找到Python路径,如果Python 2仍然在路径上,那么你的错误是正常的。