问题复现
[2021-02-04 16:24:50,480] ERROR in views: 语音合成接口失败:module 'websocket' has no attribute 'enableTrace'
Traceback (most recent call last):
File "D:\app\main\views.py", line 84, in tts
tts_voice_path = tts_ws.tts(text, vcn, str(group_uuid), to_is_minority)
File "D:\app\main\api\tts_ws.py", line 186, in tts
websocket.enableTrace(False)
AttributeError: module 'websocket' has no attribute 'enableTrace'
问题分析
这种情况一般是由于websocket的依赖包没有安装或者安装的版本不对。
通过pip list
查看到websocket库已经安装了,但是还出现这种问题,
那是啥原因呢?这是由于websocket.enableTrace(False)
方法是在websocket-client库中。
解决版本
所以,我们需要安装websocket-client库,安装的命令如下:
pip install websocket-client==0.57.0
这里为啥要指定websocket-client的版本呢?因为,websocket-client的0.56.0版本在linux下还是有问题,指定0.57.0版本之后,在windows环境以及Linux环境下都没有问题。
安装好之后就没问题了。