没有名为autobahn.twisted.websocket的模块

时间:2018-04-27 10:26:46

标签: openfaces

./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)

但为什么?请...

1 个答案:

答案 0 :(得分:1)

Traceback会告诉您所需要的一切。你缺少autobahn.twisted.websockets。所以基本上你需要的第一件事是autobahn包。你也需要扭曲。所以请执行以下操作来安装它。

pip install autobahn twisted