繁体   English   中英

有人可以帮我理解这个错误:

[英]Can someone help me understand this error:

我永远不知道怎么读这些。 如果有人可以帮助我理解这个,并且可能就如何阅读这些内容提供建议会很有帮助吗?

D:\>python captain2.py
Traceback (most recent call last):
  File "captain2.py", line 2, in <module>
    from twisted.internet import reactor
  File "c:\Python27\lib\site-packages\twisted\internet\reactor.py", line 37, in
<module>
    from twisted.internet import default
  File "c:\Python27\lib\site-packages\twisted\internet\default.py", line 50, in
<module>
    install = _getInstallFunction(platform)
  File "c:\Python27\lib\site-packages\twisted\internet\default.py", line 46, in
_getInstallFunction
    from twisted.internet.selectreactor import install
  File "c:\Python27\lib\site-packages\twisted\internet\selectreactor.py", line 1
4, in <module>
    from zope.interface import implements
ImportError: No module named zope.interface

在堆栈回溯中,Python按照调用发生的顺序列出当前的调用堆栈。 那么,首先你的captain2.py的代码:

from twisted.internet import reactor

然后reactor模块做了:

from twisted.internet import default

依此类推,直到selectreactor.py

from zope.interface import implements

并且显然系统上不存在zope.interface模块。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM