我已经使用
安装了twisted和Autobahn websocketpip install twisted
pip install autobahn
但是当我从Autobahn导入任何工厂时,我得到了无法导入名称的错误。
>>> from twisted.internet import reactor
>>> from autobahn.websocket import WebSocketClientFactory
Traceback (most recent call last):
File "<console>", line 1, in <module>
ImportError: cannot import name WebSocketClientFactory
我有什么遗漏的吗? 这是冻结点
Twisted==13.2.0
Twisted-Core==12.3.0
Twisted-Names==12.3.0
Twisted-Web==12.3.0
autobahn==0.7.4
websocket==0.2.1
websocket-client==0.13.0
答案 0 :(得分:5)
看起来好像WebSocketClientFactory
位于twisted sub-module:
from autobahn.twisted.websocket import WebSocketClientFactory
答案 1 :(得分:1)
好像用pip安装python3然后安装autobahn解决了这个问题
以下命令适用于ubuntu用户:
sudo apt-get install python3-pip
sudo pip3 install autobahn