Skip to content

Commit 7a8d339

Browse files
authored
Update qualcomm_README.md
1 parent 0301db6 commit 7a8d339

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

examples/demo-apps/android/LlamaDemo/docs/delegates/qualcomm_README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,25 @@ Phone verified: OnePlus 12, Samsung 24+, Samsung 23
1919
## Setup ExecuTorch
2020
In this section, we will need to set up the ExecuTorch repo first with Conda environment management. Make sure you have Conda available in your system (or follow the instructions to install it [here](https://anaconda.org/anaconda/conda)). The commands below are running on Linux (CentOS).
2121

22-
Create a Conda environment
22+
Checkout ExecuTorch repo and sync submodules
23+
2324
```
24-
conda create -n et_qnn python=3.10.0
25-
conda activate et_qnn
25+
git clone -b release/0.6 https://github.com/pytorch/executorch.git --depth 1 --recurse-submodules --shallow-submodules && cd executorch
2626
```
2727

28-
Checkout ExecuTorch repo and sync submodules
28+
Create either a Python virtual environment:
29+
2930
```
30-
git clone https://github.com/pytorch/executorch.git
31-
cd executorch
32-
git submodule sync
33-
git submodule update --init
31+
python3 -m venv .venv && source .venv/bin/activate && pip install --upgrade pip
3432
```
33+
34+
Or a Conda environment:
35+
36+
```
37+
conda create -n et_xnnpack python=3.10.0
38+
conda activate et_xnnpack
39+
```
40+
3541
Install dependencies
3642
```
3743
./install_executorch.sh

0 commit comments

Comments
 (0)