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
4. Install the required dependencies, including those needed for the backends like [Core ML](build-run-coreml.md) or [MPS](build-run-mps.md), if you plan to build them as well:
Copy file name to clipboardexpand all lines: docs/source/getting-started-setup.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -92,23 +92,23 @@ Alternatively, if you would like to experiment with ExecuTorch quickly and easil
92
92
# Install ExecuTorch pip package and its dependencies, as well as
93
93
# development tools like CMake.
94
94
# If developing on a Mac, make sure to install the Xcode Command Line Tools first.
95
-
./install_requirements.sh
95
+
./install_executorch.sh
96
96
```
97
97
98
-
Use the [`--pybind` flag](https://github.com/pytorch/executorch/blob/main/install_requirements.sh#L26-L29) to install with pybindings and dependencies for other backends.
98
+
Use the [`--pybind` flag](https://github.com/pytorch/executorch/blob/main/install_executorch.sh#L26-L29) to install with pybindings and dependencies for other backends.
5. Follow the instructions in the [README](https://github.com/pytorch/executorch/blob/main/examples/models/llama/README.md#option-a-download-and-export-llama32-1b3b-model) to export a model as `.pte`
32
32
@@ -40,4 +40,4 @@ A React Native mobile application for running LLaMA language models using ExecuT
40
40
41
41
10. Select the model and tokenizer in the app to start chatting:
Copy file name to clipboardexpand all lines: examples/models/llama/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ Llama 3 8B performance was measured on the Samsung Galaxy S22, S24, and OnePlus
148
148
## Step 1: Setup
149
149
> :warning:**double check your python environment**: make sure `conda activate <VENV>` is run before all the bash and python scripts.
150
150
151
-
1. Follow the [tutorial](https://pytorch.org/executorch/main/getting-started-setup) to set up ExecuTorch. For installation run `./install_requirements.sh --pybind xnnpack`
151
+
1. Follow the [tutorial](https://pytorch.org/executorch/main/getting-started-setup) to set up ExecuTorch. For installation run `./install_executorch.sh --pybind xnnpack`
152
152
2. Run `examples/models/llama/install_requirements.sh` to install a few dependencies.
153
153
154
154
@@ -440,8 +440,8 @@ This example tries to reuse the Python code, with minimal modifications to make
440
440
```
441
441
git clean -xfd
442
442
pip uninstall executorch
443
-
./install_requirements.sh --clean
444
-
./install_requirements.sh --pybind xnnpack
443
+
./install_executorch.sh --clean
444
+
./install_executorch.sh --pybind xnnpack
445
445
```
446
446
- If you encounter `pthread` related issues during link time, add `pthread` in `target_link_libraries` in `CMakeLists.txt`
447
447
- On Mac, if there is linking error in Step 4 with error message like
0 commit comments