...
/How to Install Azure Cognitive Services SDK
How to Install Azure Cognitive Services SDK
Learn to install the Azure Cognitive Services SDK for python.
Installation
Run the command below to install various packages related to azure cognitive services. You can also create a virtual environment and then install the packages.
Below is the list of cognitive services, their corresponding packages, and the commands to install them.
Azure computer vision
To work with the azure computer vision-related services, you need to install azure-cognitiveservices-vision-computervision
and pillow
packages. To install, you can run the commands mentioned below:
pip install azure-cognitiveservices-vision-computervision
pip install pillow
Azure custom vision
To work with the azure ...