Azure AI Speech
An Azure service that integrates speech processing into apps and services.
1,676 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm trying to install azure-cognitiveservices-speech on raspberrypi 3 but i get "Could not find a version that satisfies the requirement azure->cognitiveservices-speech (from versions: ) No matching distribution found for >azure-cognitiveservices-speech"
The azure-cognitiveservices-speech
package may not be available for the ARM architecture on which Raspberry Pi runs. However, you can try the following steps to see if it resolves the issue:
pip
. You can do this by running the command sudo apt-get update
followed by sudo apt-get install python3-pip
.azure-cognitiveservices-speech
package using the --pre
flag, which will include pre-release versions in the search. Run the command pip3 install --pre azure-cognitiveservices-speech
.azure-cognitiveservices-speech
package and run the command python3 setup.py install
to install the package.azure-cognitiveservices-speech
package pre-installed. You can find Docker images for the package on the Docker Hub.By following these steps, you should be able to install the azure-cognitiveservices-speech
package on Raspberry Pi.