./demos/web/start-servers.sh
Traceback (most recent call last):
File "./demos/web/websocket-server.py", line 25, in <module>
from autobahn.twisted.websocket import WebSocketServerProtocol, \
ImportError: No module named autobahn.twisted.websocket
但我已安装如下:
pip install twisted
Looking in indexes: http://mirrors.aliyun.com/pypi/simple/
Requirement already satisfied: twisted in /usr/lib/python2.7/dist-packages (16.0.0)
但为什么?请...
答案 0 :(得分:1)
Traceback会告诉您所需要的一切。你缺少autobahn.twisted.websockets。所以基本上你需要的第一件事是autobahn
包。你也需要扭曲。所以请执行以下操作来安装它。
pip install autobahn twisted