You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/install-guides/azure-cli.md
+5-9Lines changed: 5 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,11 +22,7 @@ It is available for a variety of operating systems and Linux distributions and h
22
22
23
23
## How do I prepare to install the Azure CLI on Ubuntu?
24
24
25
-
[General installation information](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt) is available which covers all supported Linux distributions. Starting with version 2.46.0, Azure CLI supports Arm64 Linux distributions. The 'apt' package manager contains both x86_64 and Arm64 packages for the following linux distributions
26
-
27
-
```output
28
-
Ubuntu 20.04, Ubuntu 22.04, Ubuntu 24.04
29
-
```
25
+
[General installation information](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt) is available which covers all supported Linux distributions. Starting with version 2.46.0, Azure CLI supports Arm64 Linux distributions. The 'apt' package manager contains both x86_64 and Arm64 packages for Ubuntu 20.04, Ubuntu 22.04, and Ubuntu 24.04.
30
26
31
27
## How do I install the Azure CLI using the installation script?
32
28
@@ -60,8 +56,8 @@ You should see an output similar to:
60
56
61
57
```output
62
58
{
63
-
"azure-cli": "2.61.0",
64
-
"azure-cli-core": "2.61.0",
59
+
"azure-cli": "2.75.0",
60
+
"azure-cli-core": "2.75.0",
65
61
"azure-cli-telemetry": "1.1.0",
66
62
"extensions": {}
67
63
}
@@ -98,8 +94,8 @@ You should see an output similar to:
Copy file name to clipboardExpand all lines: content/learning-paths/mobile-graphics-and-gaming/build-llama3-chat-android-app-using-executorch-and-xnnpack/2-executorch-setup.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ The best practice is to generate an isolated Python environment in which to inst
15
15
### Option 1: Create a Python virtual environment
16
16
17
17
```bash
18
-
python3.10 -m venv executorch
19
-
source executorch/bin/activate
18
+
python3.10 -m venv executorch-venv
19
+
source executorch-venv/bin/activate
20
20
```
21
21
22
22
The prompt of your terminal has `executorch` as a prefix to indicate the virtual environment is active.
@@ -28,8 +28,8 @@ Install Miniconda on your development machine by following the [Installing conda
28
28
Once `conda` is installed, create the environment:
29
29
30
30
```bash
31
-
conda create -yn executorch python=3.10.0
32
-
conda activate executorch
31
+
conda create -yn executorch-venv python=3.10.0
32
+
conda activate executorch-venv
33
33
```
34
34
35
35
### Clone ExecuTorch and install the required dependencies
@@ -40,7 +40,7 @@ From within the conda environment, run the commands below to download the ExecuT
0 commit comments