You need to install the CLI on your computer. There are several ways to do this.
I am a friend of NodeJS, so I use npm to install:
npm install -g azure-cli
More details here: https://www.npmjs.com/package/azure-cli
But you can do this in other ways. A very good way is to use docker. There are containers from Microsoft with a preinstalled version of Azure CLI.
docker run -it --name azure microsoft/azure-cli
On Windows 10 using ubuntu bash you can use:
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ wheezy main" | \ sudo tee /etc/apt/sources.list.d/azure-cli.list sudo apt-key adv --keyserver packages.microsoft.com --recv-keys 417A0893 sudo apt-get install apt-transport-https sudo apt-get update && sudo apt-get install azure-cli
Or how a python enthusiast run
pip install
Most importantly, the "az" / "az.bat" or "azure" bin is available through the path variable.
source share