INSTALLING AZURE MACHINE LEARNING SDK FOR PYTHON

INSTALLING AZURE MACHINE LEARNING SDK FOR PYTHON

Azure Machine Learning SDK for Python is used to build and run machine learning workflows with the AzureML Services, it allow us to manage cloud resources of AzureML in our local Python environments. With the help of AzureML SDK, you can train Machine Learning models on your local machines without worrying about the environment. In this post, we will discuss how to install AzureML SDK.

Step 1. Using your favorite Python IDE, type “pip install azureml-sdk”. For this example, I am using Anaconda navigator prompt and Spyder IDE.

Step 2. Import the Core packages, if below execute successfully, it means the above installation was successful.

Step 3. If the above fail, type “pip install ruamel.yaml” .

If it still fail, type “conda install ruamel.yaml” in anaconda prompt.

Happy Machine learning modeling 🙂

Comments are closed.