如何修复Python中的Azure-CognitiveServices-语音安装错误

时间:2019-04-15 15:35:11

标签: python pip azure-cognitive-services

enter image description here我正在研究azure语音服务,目前,我在Python上遇到此命令的问题: pip install azure-cognitiveservices-speech

我收到以下错误:“无效语法”。

我遵循了本教程:https://docs.microsoft.com/fr-fr/azure/cognitive-services/speech-service/quickstart-python

如何进行这项工作?

这用于Windows 7 64位,运行Python 3.6 64位。 我已经尝试使用Python 3.7 64位版本,并且遇到了相同的错误。

编辑:使用cmd提示符时出现相同的错误。cmd prompt - install error

1 个答案:

答案 0 :(得分:0)

pip是Python的软件包安装程序,可以在命令行中使用,不能在Python解释器中使用。在Windows上,您可以在Python的安装路径中找到它,如下面的Python 3.7所示。

enter image description here

因此,如果已将pip的安装路径添加到环境变量PATH中,则可以直接在CMD或PowerShell中使用它,也可以移至其安装路径以使用它。

图1.我的pip路径已添加到PATH

enter image description here

图2。或者在CMD中的路径下使用它

enter image description here

图3.通过CMD中的pip成功安装azure-cognitiveservices-speech

enter image description here

图4。然后在没有任何问题的Python解释器中或在其他IDE(例如Visual Studio Code)中使用它。

enter image description here