This article explains how to install the Azure CLI on Linux. Select the appropriate package manager for your distribution from the options at the top of the page.
Using a Linux distribution's package manager is recommended, but you may manually install the Azure CLI on Linux by selecting the Install script option.
The current version of the Azure CLI is 2.67.0. For information about the latest release, see the release notes. To find your installed version and see if you need to update, run az version.
Before you begin
Azure CLI 2.38.2 (released on June 21, 2024) is the last version supported on RHEL 7 and Centos 7. Microsoft is no longer providing updates or bug fixes for these distributions.
Microsoft continues to develop and support Azure CLI and the Linux Install script.
Use the yum package manager if you're using a Linux system that doesn't support the dnf package manager.
CentOS 7 End Of Life (EOL) was June 30, 2024. For information on Azure CLI supported environments, see Azure CLI support lifecycle
Install with the dnf install command.
sudo dnf install azure-cli
Install specific version
You must first configure azure-cli repository information as shown previously. Available versions can be found at Azure CLI release notes.
To view available versions with command:
dnf list --showduplicates azure-cli
To install a specific version:
sudo dnf install azure-cli-<version>-1.el7
Update Azure CLI
Beginning with version 2.11.0, the Azure CLI provides an in-tool command to update to the latest version.
az upgrade
This command also updates all installed extensions by default. For more az upgrade options, see the command reference page. For Azure CLI versions prior to 2.11.0, update by reinstalling as described in Install the Azure CLI.
You can also update the Azure CLI with the dnf update command.
sudo dnf update azure-cli
Uninstall Azure CLI
If you decide to uninstall the Azure CLI, we're sorry to see you go. Before you uninstall, use the az feedback command to let us know
what could be improved or fixed. Our goal is to make the Azure CLI bug-free and user-friendly. If you found a bug, we'd appreciate it if you file a GitHub issue.
Remove the package from your system.
sudo dnf remove azure-cli
If you don't plan to reinstall the CLI, remove the repository information.
sudo rm /etc/yum.repos.d/azure-cli.repo
If you don't use any other Microsoft packages, remove the signing key.
If you don't plan to reinstall Azure CLI, remove its data.
rm -rf ~/.azure
Troubleshooting
Here are some common problems seen when installing with dnf. If you experience a problem not covered here, file an issue on GitHub.
Install on RHEL 7.6 or other systems without Python 3
If you're able, upgrade your system to a version with official support for python 3.6+ package. Otherwise, you need to first install a python3 package, then install Azure CLI without dependency.
You can use the following command to download and install the Azure CLI install script with python 3.6 built from source:
First, Azure CLI requires SSL 1.1+ and you need to build openssl 1.1 from source before building python3:
sudo dnf install gcc gcc-c++ make ncurses patch wget tar zlib zlib-devel -y
# build openssl from source
cd ~
wget https://www.openssl.org/source/openssl-1.1.1d.tar.gz
tar -xzf openssl-1.1.1d.tar.gz
cd openssl-1.1.1d
./config --prefix=/usr/local/ssl --openssldir=/usr/local/ssl
make
sudo make install
# configure shared object lookup directory so that libssl.so.1.1 can be found
echo "/usr/local/ssl/lib" | sudo tee /etc/ld.so.conf.d/openssl-1.1.1d.conf
# reload config
sudo ldconfig -v
Then build Python 3 from source:
PYTHON_VERSION="3.6.9"
PYTHON_SRC_DIR=$(mktemp -d)
wget -qO- https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tgz | tar -xz -C "$PYTHON_SRC_DIR"
cd $PYTHON_SRC_DIR/Python-$PYTHON_VERSION
./configure --prefix=/usr --with-openssl=/usr/local/ssl
make
sudo make install
Finally, follow steps 1 and 2 of the install instruction to add the Azure CLI repository. You can now download the package and install it without dependency.
Note
If the dnf download plugin isn't already installed, you will encounter a command not found error when executing the following code. Use dnf install 'dnf-command(download)' to install the dnf download plugin.
As an alternative, you can also install Python 3 using another repo. Use this method, if you have set up python3 but are still getting the error python3: command not found. Make sure it has been included it in your path.
scl enable rh-python36 bash
Proxy blocks connection
If you're unable to connect to an external resource due to a proxy, make sure that you've correctly set the HTTP_PROXY and HTTPS_PROXY variables in your shell. You need to contact your system administrator
to know what host(s) and port(s) to use for these proxies.
The values in these variables are used by many Linux programs, and during the install process.
To set these values:
If you are behind a proxy, these shell variables must be set to connect to Azure services with the CLI.
If you are not using basic auth, it's recommended to export these variables in your .bashrc file.
Always follow your business' security policies and the requirements of your system administrator.
You may also want to explicitly configure dnf to always use this proxy. Make sure that the following
lines appear under the [main] section of /etc/dnf/dnf.conf:
[main]
# ...
proxy=http://[proxy]:[port] # If your proxy requires https, change http->https
proxy_username=[username] # Only required for basic auth
proxy_password=[password] # Only required for basic auth
In order to get the Microsoft signing key and the package from our repository, your proxy needs to
allow HTTPS connections to the following address:
https://packages.microsoft.com
CLI fails to install or run on Windows Subsystem for Linux
Since Windows Subsystem for Linux (WSL) is a system call translation layer on top of the
Windows platform, you might experience an error when trying to install or run the Azure CLI. The CLI relies on
some features that may have a bug in WSL. If you experience an error no matter how you install the CLI,
there's a good chance it's an issue with WSL and not with the CLI install process.
To troubleshoot your WSL installation and possibly resolve issues:
If you can, run an identical install process on a Linux machine or VM to see if it succeeds. If it does,
your issue is likely related to WSL. To start a Linux VM in Azure, see the
create a Linux VM in the Azure portal documentation.
Check for any open issues with WSL that might address your problem.
Often there are suggestions on how to work around the problem, or information about a release where
the issue is fixed.
If there are no existing issues for your problem, file a new issue with WSL
and make sure that you include as much information as possible.
Azure CLI 2.38.2 (released on June 21, 2024) is the latest version supported on SUSE Linux Enterprise Server (SLES) and OpenSUSE (Leap). Microsoft is no longer providing updates or bug fixes for these distributions.
Microsoft continues to develop and support the Azure CLI and the Linux Install script. SUSE maintains and supports packages provided by SUSE/OpenSUSE repositories.
In Azure, SUSE and OpenSUSE virtual machines (VMs) based on Azure Marketplace images already have the Azure CLI installed.
Install Azure CLI
To install Azure CLI on SUSE/OpenSUSE, choose one of the following methods:
The RPM package of the Azure CLI depends on the python3 package.
sudo zypper install -y azure-cli
Install with the install script
You can manually install the Azure CLI on any version of Linux by using the Install script option.
If you're updating to the most recent version using this method, be sure to uninstall the previous version first, and any repositories you may have added for that version.
Install from Microsoft repositories
To install the most recent historical version of the Azure CLI using Microsoft repositories, follow these steps.
(This package has been tested with SLES 15 and OpenSUSE Leap 15.1)
Beginning with version 2.11.0, the Azure CLI provides an in-tool command to update to the latest version.
az upgrade
This command also updates all installed extensions by default. For more az upgrade options, see the command reference page. For Azure CLI versions prior to 2.11.0, update by reinstalling as described in Install the Azure CLI.
You can also update the package with the zypper update command.
sudo zypper refresh
sudo zypper update azure-cli
Uninstall Azure CLI
If you decide to uninstall the Azure CLI, we're sorry to see you go. Before you uninstall, use the az feedback command to let us know
what could be improved or fixed. Our goal is to make the Azure CLI bug-free and user-friendly. If you found a bug, we'd appreciate it if you file a GitHub issue.
Remove the package from your system.
sudo zypper remove -y azure-cli
If you don't plan to reinstall the CLI, remove the repository information.
sudo zypper removerepo azure-cli
If you don't use other Microsoft packages, remove the Microsoft signing key.
If you don't plan to reinstall Azure CLI, remove its data.
rm -rf ~/.azure
Troubleshooting
Here are some common problems seen when installing with zypper. If you experience a problem not covered here, file an issue on GitHub.
Install without Python 3
Important
The RPM package of the Azure CLI depends on the python3 package. On your system, this may be
a Python version which predates the requirement of Python 3.6.x. If this affects you, find a
replacement python3 package.
Be aware that Python 2 has reached end of life (EOL) on January 1, 2020, and will no longer receive
updates. Azure CLI has dropped support for Python 2.7 since version 2.1.0.
Newer versions of the CLI may not run correctly using Python 2.7.
NotImplementedError on OpenSUSE 15 VM
The OpenSUSE 15 VM has a preinstalled Azure CLI with version 2.0.45, which is outdated and has issues with az login. Remove this version along with its dependencies before following the Install instruction to add the latest Azure CLI:
sudo zypper rm -y --clean-deps azure-cli
If you updated the Azure CLI without removing the dependencies of version 2.0.45, its old dependencies may affect the latest version of the Azure CLI. You need to add back the old version to link to its dependencies and then remove azure-cli along with its dependencies:
# The package name may vary on different system version, run 'zypper --no-refresh info azure-cli' to check the source package format
sudo zypper install --oldpackage azure-cli-2.0.45-4.22.noarch
sudo zypper rm -y --clean-deps azure-cli
Install on SLES 12 or other systems without Python 3.6
On SLES 12, the default python3 package is 3.4 and not supported by Azure CLI. You can first follow step 1-3 of the install instruction to add the azure-cli repository. Then build a higher version python3 from source. Finally, you can download the Azure CLI package and install it without dependency.
You can use the following one command to install or update Azure CLI based on above steps. The script installs Python 3.8 under /usr/local/azcli and makes Azure CLI use it by setting an alias of az to PATH=/usr/local/azcli/bin:$PATH az. You can also download the script and modify it according to your needs. For instance, you can change the Python version or install location.
For the first time install, remember to run the following command to activate the alias:
source ~/.bashrc
Proxy blocks connection
If you're unable to connect to an external resource due to a proxy, make sure that you've correctly set the HTTP_PROXY and HTTPS_PROXY variables in your shell. You need to contact your system administrator
to know what host(s) and port(s) to use for these proxies.
The values in these variables are used by many Linux programs, and during the install process.
To set these values:
If you are behind a proxy, these shell variables must be set to connect to Azure services with the CLI.
If you are not using basic auth, it's recommended to export these variables in your .bashrc file.
Always follow your business' security policies and the requirements of your system administrator.
You may also want to explicitly configure zypper (via yast2) to always use this proxy. To do so,
run the yast2 proxy command as superuser, and fill in the information presented in the form. If you have a window
manager available on your system, you can also use the Network Services > Proxy pane in the YaST Control Center.
To get the Microsoft signing key and get the package from our repository, your proxy needs to
allow HTTPS connections to the following addresses:
https://packages.microsoft.com
https://download.opensuse.org
CLI fails to install or run on Windows Subsystem for Linux
Since Windows Subsystem for Linux (WSL) is a system call translation layer on top of the
Windows platform, you might experience an error when trying to install or run the Azure CLI. The CLI relies on
some features that may have a bug in WSL. If you experience an error no matter how you install the CLI,
there's a good chance it's an issue with WSL and not with the CLI install process.
To troubleshoot your WSL installation and possibly resolve issues:
If you can, run an identical install process on a Linux machine or VM to see if it succeeds. If it does,
your issue is likely related to WSL. To start a Linux VM in Azure, see the
create a Linux VM in the Azure portal documentation.
Check for any open issues with WSL that might address your problem.
Often there are suggestions on how to work around the problem, or information about a release where
the issue is fixed.
If there are no existing issues for your problem, file a new issue with WSL
and make sure that you include as much information as possible.
When a certificate is broken or outdated on a machine, you might receive an error indicating that curl failed to verify the legitimacy of the server, and therefore couldn't establish a secure connection. Update your certificate to correct the problem.
sudo zypper update-ca-certificates
Before you begin
The apt package manager contains x86_64 and ARM64 packages for the Azure CLI that has been tested on the following distributions.
Ubuntu 20.04 (Focal Fossa) and 20.10 (Groovy Gorilla) include an azure-cli package with version 2.0.81 provided by the universe repository. This package is outdated and not recommended. If this package is installed, remove the package before continuing by running the command sudo apt remove azure-cli -y && sudo apt autoremove -y. For more information on apt remove, see the Ubuntu package management or ask ubuntu.
Install Azure CLI
There are two options to install the Azure CLI on your system. You can download an install script that runs the install commands for you, or you can execute the install commands yourself in a step-by-step process. Both methods are provided here:
Option 1: Install with one command
The easiest way to install the Azure CLI is through a script maintained by the Azure CLI team. This script runs all installation commands in one step. This script is downloaded via curl and piped directly to bash to install the CLI.
If you wish to inspect the contents of the script yourself before executing, download the script first using curl and inspect it in your favorite text editor.
Configure the azure-cli repository information as shown previously. Available versions can be found at Azure CLI release notes.
View available versions of the Azure CLI.
apt-cache policy azure-cli
Install a specific version.
# Obtain the currently installed distribution
AZ_DIST=$(lsb_release -cs)
# Store an Azure CLI version of choice
AZ_VER=2.51.0
# Install a specific version
sudo apt-get install azure-cli=${AZ_VER}-1~${AZ_DIST}
To install a specific version without variables, replace the Azure CLI version and Linux distribution name shown:
sudo apt-get install azure-cli=2.51.0-1~bullseye
If you receive error message Unable to locate package azure-cli, the azure-cli repository information is not configured. Follow the steps given in Option 2: Step-by-step installation instructions.
If you receive error message Version x.xx.x-1~distributionName for azure-cli was not found, use lsb_release -cs to find the distribution you're running.
Update Azure CLI
Beginning with version 2.11.0, the Azure CLI provides an in-tool command to update to the latest version.
az upgrade
This command also updates all installed extensions by default. For more az upgrade options, see the command reference page. For Azure CLI versions prior to 2.11.0, update by reinstalling as described in Install the Azure CLI.
You can also use apt-get upgrade to update the CLI package. This command upgrades all of the installed packages on your system that haven't had a dependency change.
If you decide to uninstall the Azure CLI, we're sorry to see you go. Before you uninstall, use the az feedback command to let us know
what could be improved or fixed. Our goal is to make the Azure CLI bug-free and user-friendly. If you found a bug, we'd appreciate it if you file a GitHub issue.
Uninstall with apt-get remove:
sudo apt-get remove -y azure-cli
If you don't plan to reinstall the CLI, remove the Azure CLI repository information:
sudo rm /etc/apt/sources.list.d/azure-cli.sources
If you aren't using other packages from Microsoft, remove the signing key:
sudo rm /etc/apt/keyrings/microsoft.gpg
Remove any unneeded packages:
sudo apt autoremove
Remove data
If you don't plan to reinstall Azure CLI, remove its data.
rm -rf ~/.azure
Troubleshooting
Here are some common problems seen when installing with apt. If you experience a problem not covered here, file an issue on GitHub.
The azure-cli package supports ARM64 architecture from CLI version 2.46.0.
No module issue on Ubuntu 20.04 (Focal)/WSL
If you installed azure-cli on Focal without adding the Azure CLI software repository in step 3 of the manual install instructions or using our script, you may encounter issues such as no module named 'decorator' or 'antlr4' as the package you installed is the outdated azure-cli 2.0.81 from the focal/universe repository. Remove it first by running sudo apt remove azure-cli -y && sudo apt autoremove -y, then follow the above instructions to install the latest azure-cli package.
lsb_release doesn't return the correct base distribution version
Some Ubuntu or other Debian-derived distributions (such as Linux Mint) may not return the correct version name from lsb_release. This value is used in the install process to
determine the package to install. If you know the code name of the Ubuntu or Debian version that your distribution is derived from, you can set the AZ_REPO value manually when
adding the repository. Otherwise, look up information for your distribution on how to determine the base distribution code name and set AZ_REPO to the correct value.
No package for your distribution
Sometimes, an updated Azure CLI package isn't immediately available following a distribution version release. The Azure CLI is designed to be resilient to future versions of dependencies and relies on as few of them as possible. If there's no package available for your base distribution, try a package for an earlier distribution.
To try a package for an earlier distribution, set the value of AZ_REPO manually when adding the repository. For Ubuntu distributions, use the latest jammy repository:
AZ_REPO="jammy"
For Debian distributions, use the latest bookworm repository:
AZ_REPO="bookworm"
Important
Distributions released before Ubuntu Bionic and Debian Buster are not supported.
Elementary OS (EOS) fails to install the Azure CLI
EOS fails to install the Azure CLI because lsb_release returns HERA, which is the EOS release name. The solution is to fix the file /etc/apt/sources.list.d/azure-cli.sources and change Suites: hera to Suites: bionic.
Original file contents:
Types: deb
URIs: https://packages.microsoft.com/repos/azure-cli/
Suites: hera
Components: main
Architectures: amd64
Signed-by: /etc/apt/keyrings/microsoft.gpg
Modified file contents
Types: deb
URIs: https://packages.microsoft.com/repos/azure-cli/
Suites: bionic
Components: main
Architectures: amd64
Signed-by: /etc/apt/keyrings/microsoft.gpg
Proxy blocks connection
If you're unable to connect to an external resource due to a proxy, make sure that you've correctly set the HTTP_PROXY and HTTPS_PROXY variables in your shell. You need to contact your system administrator
to know what host(s) and port(s) to use for these proxies.
The values in these variables are used by many Linux programs, and during the install process.
To set these values:
If you are behind a proxy, these shell variables must be set to connect to Azure services with the CLI.
If you are not using basic auth, it's recommended to export these variables in your .bashrc file.
Always follow your business' security policies and the requirements of your system administrator.
You may also want to explicitly configure apt to always use this proxy. Make sure that the
following lines appear in an apt configuration file in /etc/apt/apt.conf.d/. We recommend using
either your existing global configuration file, an existing proxy configuration file, 40proxies,
or 99local, but follow your system administration requirements.
If your proxy doesn't use basic auth, remove the [username]:[password]@ portion of the proxy URI. If you require more information for proxy configuration, see the official Ubuntu documentation:
In order to get the Microsoft signing key and get the package from our repository, your proxy needs to allow HTTPS connections to the following address: `https://packages.microsoft.com.
CLI fails to install or run on Windows Subsystem for Linux
Since Windows Subsystem for Linux (WSL) is a system call translation layer on top of the
Windows platform, you might experience an error when trying to install or run the Azure CLI. The CLI relies on
some features that may have a bug in WSL. If you experience an error no matter how you install the CLI,
there's a good chance it's an issue with WSL and not with the CLI install process.
To troubleshoot your WSL installation and possibly resolve issues:
If you can, run an identical install process on a Linux machine or VM to see if it succeeds. If it does,
your issue is likely related to WSL. To start a Linux VM in Azure, see the
create a Linux VM in the Azure portal documentation.
Check for any open issues with WSL that might address your problem.
Often there are suggestions on how to work around the problem, or information about a release where
the issue is fixed.
If there are no existing issues for your problem, file a new issue with WSL
and make sure that you include as much information as possible.
Update the Azure CLI with the tdnf update command:
sudo tdnf update azure-cli
Uninstall Azure CLI
If you decide to uninstall the Azure CLI, we're sorry to see you go. Before you uninstall, use the az feedback command to let us know
what could be improved or fixed. Our goal is to make the Azure CLI bug-free and user-friendly. If you found a bug, we'd appreciate it if you file a GitHub issue.
Remove the package from your system:
sudo tdnf remove azure-cli
Remove data
If you don't plan to reinstall Azure CLI, remove its data.
rm -rf ~/.azure
Before you begin
It's strongly recommend to install the CLI with a package manager. A package manager makes sure you always get the latest updates, and guarantees the stability of CLI components. Check and see if there's a package for your distribution before installing manually.
The install script for the Azure CLI requires the following software:
The install script only works on Python 3.8.x, 3.9.x, or 3.10.x. This install script does not work on Python 3.11.x or later versions.
Both installing and updating the Azure CLI requires rerunning the install script:
curl -L https://aka.ms/InstallAzureCli | bash
The script can also be downloaded and run locally. You may have to restart your shell for the changes to take effect.
Uninstall Azure CLI
If you decide to uninstall the Azure CLI, we're sorry to see you go. Before you uninstall, use the az feedback command to let us know
what could be improved or fixed. Our goal is to make the Azure CLI bug-free and user-friendly. If you found a bug, we'd appreciate it if you file a GitHub issue.
Uninstall the CLI by directly deleting the files from the location chosen at the time of installation. The default install location is the user's home directory ($HOME).
Modify your $HOME/.bash_profile file to remove the following line:
<install location>/lib/azure-cli/az.completion
If using bash or zsh, reload your shell's command cache.
hash -r
Remove data
If you don't plan to reinstall Azure CLI, remove its data.
rm -rf ~/.azure
Troubleshooting
Here are some common problems seen during a manual installation. If you experience a problem not covered here, file an issue on GitHub.
Install without Python 3
The Azure CLI has dropped support for Python 2.7 since version 2.1.0.
On your system, there may be a Python version that predates the requirement of Python 3.6.x.
Find a replacement python3 package.
curl "Object Moved" error
If you get an error from curl related to the -L parameter, or an error message including the text "Object Moved", try using
the full URL instead of the aka.ms redirect:
If you can't run the command after installation using bash or zsh, try clearing your shell's command hash cache and check if the problem is resolved.
hash -r
The issue can also occur if you didn't restart your shell after installation. Make sure that the location of the az command is in your $PATH. The location
of the az command is ...
<install path>/bin
Proxy blocks connection
If you're unable to connect to an external resource due to a proxy, make sure that you've correctly set the HTTP_PROXY and HTTPS_PROXY variables in your shell. You need to contact your system administrator
to know what host(s) and port(s) to use for these proxies.
The values in these variables are used by many Linux programs, and during the install process.
To set these values:
If you are behind a proxy, these shell variables must be set to connect to Azure services with the CLI.
If you are not using basic auth, it's recommended to export these variables in your .bashrc file.
Always follow your business' security policies and the requirements of your system administrator.
In order to get the installation scripts, your proxy needs to allow HTTPS connections to the
following addresses:
https://aka.ms/
https://azurecliprod.blob.core.windows.net/
https://pypi.python.org
Endpoints used by your distribution's package manager (if any) for core packages
CLI fails to install or run on Windows Subsystem for Linux
Since Windows Subsystem for Linux (WSL) is a system call translation layer on top of the
Windows platform, you might experience an error when trying to install or run the Azure CLI. The CLI relies on
some features that may have a bug in WSL. If you experience an error no matter how you install the CLI,
there's a good chance it's an issue with WSL and not with the CLI install process.
To troubleshoot your WSL installation and possibly resolve issues:
If you can, run an identical install process on a Linux machine or VM to see if it succeeds. If it does,
your issue is likely related to WSL. To start a Linux VM in Azure, see the
create a Linux VM in the Azure portal documentation.
Check for any open issues with WSL that might address your problem.
Often there are suggestions on how to work around the problem, or information about a release where
the issue is fixed.
If there are no existing issues for your problem, file a new issue with WSL
and make sure that you include as much information as possible.
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure CLI feedback
Azure CLI is an open source project. Select a link to provide feedback:
Implante e personalize um SLES (SUSE Linux Enterprise Server) na VM (máquina virtual) do Azure usando ferramentas de gerenciamento de pacotes do zypper e do administrador do YaST para adicionar pacotes RPM. Saiba como o SUSE agrupa pacotes e reconcilia as dependências de pacote para ajudar a garantir que você execute as atualizações e versões mais recentes. Pratique o uso do YaST e do zypper para instalar uma pilha do LAMP em uma VM SLES do Azure.