4

按照此处的指南安装 microsoft azure text to Speech SDK:https ://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/quickstart-python#install-the-speech-sdk

它说要运行 pip install azure-cognitiveservices-speech ,但不幸的是这又回来了

找不到满足要求 azure->cognitiveservices-speech 的版本(来自版本:)没有为 >azure-cognitiveservices-speech 找到匹配的分布

我尝试使用 ==1.2.0 在末尾添加版本号,并添加 --pre。所以:

python -m pip install azure-cognitiveservices-speech --pre

python -m pip install azure-cognitiveservices-speech==1.2.0.

我能够使用python -m pip install azure它,它下载了一大堆模块,但不是认知服务模块。我在 python 2.7 和 python 3.7 上试过,我还安装了Microsoft Visual C++ Redistributable for Visual Studio 2017。如果有人对如何安装此模块有任何想法,将不胜感激。

这是 pypi 链接:https ://pypi.org/project/azure-cognitiveservices-speech/

4

1 回答 1

5

azure-cognitiveservices-speech1.2.0 版适用于 Python 3.5、3.63.7适用于 MacOS、Linux 和 Windows,仅 64 位

你的 Python 版本是什么?检查它是 64 位,而不是 32 位:

控制台/外壳:

python -c "import struct; print(struct.calcsize('P') * 8)"
于 2019-01-29T19:27:37.983 回答