当我试图在Python环境上安装azure认知服务时,我遇到了一个问题。
当我运行命令时:
pip install azure-cognitiveservices-speech==1.13.0下一条消息显示:
ERROR: Could not find a version that satisfies the requirement azure-cognitiveservices-speech==1.13.0 (from versions: none)
ERROR: No matching distribution found for azure-cognitiveservices-speech==1.13.0我的Python版本是64位:
python -c "import struct; print(struct.calcsize('P')*8)"
64我把pip版本更新为20.2.4
我需要安装一些预要求吗?
发布于 2020-11-24 12:03:00
啊!
目前Python3.5到3.8中支持SPEECH,因此出现了错误。(& 64位)

参考资料:
您可以参考上面的文章来获得运行SDK的其他需求。
您可以从https://www.python.org/downloads/下载Python特定版本。

https://stackoverflow.com/questions/64970861
复制相似问题