From 84e1eab161023c73bd06430e8cfc5cbf7e30eeaa Mon Sep 17 00:00:00 2001 From: Mergen Nachin Date: Tue, 4 Mar 2025 10:26:23 -0500 Subject: [PATCH 1/2] Update using-executorch-building-from-source.md --- docs/source/using-executorch-building-from-source.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/using-executorch-building-from-source.md b/docs/source/using-executorch-building-from-source.md index 8196c7d39df..3cdb98392df 100644 --- a/docs/source/using-executorch-building-from-source.md +++ b/docs/source/using-executorch-building-from-source.md @@ -84,7 +84,8 @@ portability details. ``` ./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`. pip install -e . ``` From f01794cad8d0af6b7957ca2acda8b69eb71d541b Mon Sep 17 00:00:00 2001 From: Mergen Nachin Date: Tue, 4 Mar 2025 10:28:48 -0500 Subject: [PATCH 2/2] Update using-executorch-building-from-source.md --- docs/source/using-executorch-building-from-source.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/using-executorch-building-from-source.md b/docs/source/using-executorch-building-from-source.md index 3cdb98392df..842c00b842c 100644 --- a/docs/source/using-executorch-building-from-source.md +++ b/docs/source/using-executorch-building-from-source.md @@ -81,11 +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 - # either via a previous invocation of `./install_executorch.sh` or by explicitly installing requirements via `./install_requirements.sh`. + # either via a previous invocation of `./install_executorch.sh` or by explicitly installing requirements via `./install_requirements.sh` first. pip install -e . ```