Skip to content

Commit 663ccf5

Browse files
committed
Make minor updates to LLM guide setup instructions
1 parent 9fd1a0e commit 663ccf5

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/source/llm/getting-started.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
## Prerequisites
1616

1717
To follow this guide, you'll need to clone the ExecuTorch repository and install dependencies.
18-
ExecuTorch requires Python 3.10, as well as This example uses
19-
conda to manage the Python environment.
18+
ExecuTorch recommends Python 3.10 and the use of Conda to manage your environment. Conda is not
19+
required, though be aware that you may need to replace the use of python/pip with python3/pip3
20+
depending on your environment.
2021

2122
::::{tab-set}
2223
:::{tab-item} conda
@@ -57,7 +58,7 @@ eval "$(pyenv virtualenv-init -)"
5758
mkdir et-nanogpt
5859
cd et-nanogpt
5960
60-
pyenv install 3.10
61+
pyenv install -s 3.10
6162
pyenv virtualenv 3.10 executorch
6263
pyenv activate executorch
6364
@@ -68,8 +69,8 @@ cd third-party/executorch
6869
git submodule update --init
6970
7071
# Install requirements.
71-
pip3 install cmake zstd
72-
./install_requirements.sh
72+
pip install cmake zstd
73+
PYTHON_EXECUTABLE=python ./install_requirements.sh
7374
7475
cd ../..
7576
```

0 commit comments

Comments
 (0)