Install Microsoft Azure CLI on Ubuntu

To install Microsoft Azure CLI on Ubuntu, run

AZ_REPO=$(lsb_release -cs)
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZ_REPO main" | \
    sudo tee /etc/apt/sources.list.d/azure-cli.list

Now run

curl -L https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-get install apt-transport-https
sudo apt-get update && sudo apt-get install azure-cli

You will be able to use az command now.

Autenticate with Azure

Run

az login

See az

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *