File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 15
15
## Prerequisites
16
16
17
17
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.
20
21
21
22
::::{tab-set}
22
23
:::{tab-item} conda
@@ -57,7 +58,7 @@ eval "$(pyenv virtualenv-init -)"
57
58
mkdir et-nanogpt
58
59
cd et-nanogpt
59
60
60
- pyenv install 3.10
61
+ pyenv install -s 3.10
61
62
pyenv virtualenv 3.10 executorch
62
63
pyenv activate executorch
63
64
@@ -68,8 +69,8 @@ cd third-party/executorch
68
69
git submodule update --init
69
70
70
71
# Install requirements.
71
- pip3 install cmake zstd
72
- ./install_requirements.sh
72
+ pip install cmake zstd
73
+ PYTHON_EXECUTABLE=python ./install_requirements.sh
73
74
74
75
cd ../..
75
76
```
You can’t perform that action at this time.
0 commit comments