我正在使用我在新库中编写的另一个库中的模块。PyDev 和nosetests 无法解析我的新库中使用的导入,尽管Python 解释器能够这样做。我引用的库存储在我的配置文件站点包中,并且我重新配置了 PyDev 的 PYTHONPATH 只是为了确保该文件夹包含在路径中。这是。
问题看起来像这样:
我的进口:
import my_library
# Here Eclipse says "ID:E1101 Module 'my_library' has no 'MyClass' member"
print(my_library.MyClass)
# Here Eclipse shows the same error as above
class NewClass(my_library.MyClass):
...
尽管如此,如果我在 Eclipse 终端或系统终端中执行该文件,则会打印以下内容:
<class 'my_library.my_class.MyClass'>
我有基于我正在重构的库的旧实现的测试,如果我在 PyDev 调试器中运行它们,它们都会以错误结束。nosetests
也会返回错误,但是如果我在运行测试的情况下手动运行python test.py
测试。
这是鼻子测试的输出:
E......
======================================================================
ERROR: Failure: AttributeError ('module' object has no attribute 'MyClass')
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/me/.local/lib/python2.7/site-packages/nose-1.3.0-py2.7.egg/nose/loader.py", line 413, in loadTestsFromName
addr.filename, addr.module)
File "/home/me/.local/lib/python2.7/site-packages/nose-1.3.0-py2.7.egg/nose/importer.py", line 47, in importFromPath
return self.importFromDir(dir_path, fqname)
File "/home/me/.local/lib/python2.7/site-packages/nose-1.3.0-py2.7.egg/nose/importer.py", line 94, in importFromDir
mod = load_module(part_fqname, fh, filename, desc)
File "/home/me/development/eclipse/newLibrary/new_library/__init__.py", line 29, in <module>
from .classes import User, DataPackage
File "/home/me/development/eclipse/newLibrary/new_library/classes.py", line 37, in <module>
from .metadata import MetaData
File "/home/me/development/eclipse/newLibrary/new_library/metadata.py", line 13, in <module>
print(my_library.MyClass)
AttributeError: 'module' object has no attribute 'MyClass'
----------------------------------------------------------------------
Ran 7 tests in 0.007s
FAILED (errors=1)
我的系统和 Eclipse 使用的 PYTHONPATH 似乎是相同的(至少我在 Eclipse 设置中看到包含我的包的 site-packages 文件夹),并且解释器也相同(Python 2.7)。
所以我看到 import 语句有效 - 至少在命令行中是这样。但在 Eclipse 内部却没有。我也尝试过引用另一个项目,或者取消引用它,都没有效果。包导入没有抱怨,但 Eclipse 不相信我该类存在。这是怎么回事?