Installing Azure CLI
Last updated
Last updated
Azure CLI can be installed on Windows, macOS, or Linux.
Windows
Use the MSI Installer
macOS
brew install azure-cli
(Homebrew)
Linux (Ubuntu/Debian)
Use apt-get
Linux (RHEL/Fedora)
Use yum/dnf
Go to the .
Download the MSI Installer.
Run the installer (Next β Next β Finish).
Open Command Prompt or PowerShell and test:
β You should see the installed version.
If you use Homebrew:
Then verify:
Then verify:
Azure CLI updates frequently to support new Azure services.
Update using:
Windows
Rerun the MSI installer
macOS
brew upgrade azure-cli
Linux
sudo apt-get update && sudo apt-get install azure-cli
Always try to keep your CLI updated to avoid bugs or missing features!
Check your version:
You can view available updates using:
After installation, you must authenticate.
β This opens a browser window asking for your Microsoft credentials.
If you canβt open a browser (example: SSH session):
For automated scripts, you should log in with a Service Principal:
(We'll dive into Service Principals later in the course.)
If you have multiple Azure subscriptions, you need to set the active one.
First, list your subscriptions:
Example output:
MyCompany-Production
1234abcd-5678-efgh-9101-ijklmnopqrst
Enabled
MyCompany-Dev
8765zyxw-4321-vuts-1098-ponmlkjihgfed
Enabled
Then set your active subscription:
β Now, every command you run will operate against that subscription.
Double-check everything by running:
You should see:
Your current subscription
Your tenant ID
Your user ID
And finally:
If you get a valid response (even if empty), your CLI is ready!
This gives you a code to enter at .