Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ To install the Azure CLI, follow these steps:
sudo dnf install azure-cli
```

> [!IMPORTANT]
> **RHEL 9.0 Compatibility**: Because Python 3.9 is end-of-life, Azure CLI 2.72 is the last
Copy link

Copilot AI Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The terminology "end-of-life" should match the existing style in this document. Line 68 uses "End Of Life (EOL)" with capitals. Consider using "End Of Life (EOL)" instead of "end-of-life" for consistency, or alternatively use the abbreviated form "EOL" since it's already defined earlier in the document.

Suggested change
> **RHEL 9.0 Compatibility**: Because Python 3.9 is end-of-life, Azure CLI 2.72 is the last
> **RHEL 9.0 Compatibility**: Because Python 3.9 is End Of Life (EOL), Azure CLI 2.72 is the last

Copilot uses AI. Check for mistakes.
> version compatible with RHEL 9.0 systems using Python 3.9. Install Azure CLI 2.72 using: `sudo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

using Python 3.9 is not accurate. It should be the OS does not have python3.12 package. In other word, less than RHEL 9.4.

> dnf install azure-cli-2.72.0`.
Copy link

Copilot AI Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The installation command references azure-cli-2.72.0 but based on line 96 which shows the version format as azure-cli-<version>-1.el7, the correct command format should likely be sudo dnf install azure-cli-2.72.0-1.el9 or similar. Please verify the exact package name format for RHEL 9 systems to ensure users can successfully install this specific version.

Suggested change
> dnf install azure-cli-2.72.0`.
> dnf install azure-cli-2.72.0-1.el9`.

Copilot uses AI. Check for mistakes.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dnf install azure-cli-2.72.0 won't work.


## Install specific version

You must first configure `azure-cli` repository information as shown previously. Available versions
Expand Down