1 报错
ModuleNotFoundError: No module named 'websocket'
2 解决方法
pip install websocket
1 报错
AttributeError: module 'websocket' has no attribute 'enableTrace'
2 分析
一般是由于websocket的依赖包没有安装造成的。websocket.enableTrace()方法是在websocket-client库中,所以安装该库即可解决问题。
3 解决方法
pip install websocket-client
1 报错
import tornado.web
ModuleNotFoundError: No module named 'tornado'
2 解决方法
pip3 install tornado