Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/source/using-executorch-building-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,11 @@ portability details.
```

For development, install the package in `--editable` mode, which allows to modify Python source code and see changes reflected immediately.
```
```bash
./install_executorch.sh --editable [--pybind xnnpack]

# Or you can directly do the following if dependencies are already installed.
# Or you can directly do the following if dependencies are already installed
# either via a previous invocation of `./install_executorch.sh` or by explicitly installing requirements via `./install_requirements.sh` first.
pip install -e .
```

Expand Down
Loading