fix: azure cli installation commands

This commit is contained in:
Michele Cereda
2023-08-16 00:20:33 +02:00
parent 0014a1c387
commit c5d67a67b6
2 changed files with 5 additions and 1 deletions

View File

@@ -17,9 +17,10 @@ Queries (`az … --query …`) use the [JMESPath] query language for JSON.
```sh
# Install the CLI.
pip install 'azure-cli'
pipx install 'azure-cli'
brew install 'azure-cli'
asdf plugin add 'azure-cli' && asdf install 'azure-cli' '2.43.0'
docker run -it -v "${HOME}/.ssh:/root/.ssh" 'mcr.microsoft.com/azure-cli'
docker run -v "${HOME}/.azure:/root/.azure" 'mcr.microsoft.com/azure-cli:2.40.0'
# Disable certificates check upon connection.
# Use it for proxies with doubtful certificates.

View File

@@ -39,6 +39,9 @@ pipx upgrade 'pip-autoremove'
# Upgrade all installed applications.
pipx upgrade-all
# Remove installed applications.
pipx uninstall 'azure-cli'
```
## Further readings