summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_start.md6
-rw-r--r--docs/sections/building.md14
2 files changed, 10 insertions, 10 deletions
diff --git a/docs/quick_start.md b/docs/quick_start.md
index d9c3712..daef495 100644
--- a/docs/quick_start.md
+++ b/docs/quick_start.md
@@ -37,14 +37,14 @@ To get started quickly, please follow these steps:
[supported by Vela](https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u-vela/+/HEAD/SUPPORTED_OPS.md).
```commandline
- python3.9 ./build_default.py
+ python3 ./build_default.py
```
> **Note** The preceding command assumes you are using the GNU Arm Embedded toolchain. If you are using the Arm
> Compiler instead, you can override the default selection by executing:
```commandline
- python3.9 ./build_default.py --toolchain arm
+ python3 ./build_default.py --toolchain arm
```
5. Launch the project as explained in the following section: [Deployments](sections/deployment.md#deployment). In quick
@@ -71,7 +71,7 @@ mkdir resources_downloaded && cd resources_downloaded
python3 -m venv env
env/bin/python3 -m pip install --upgrade pip
env/bin/python3 -m pip install --upgrade setuptools
-env/bin/python3 -m pip install ethos-u-vela==3.9.0
+env/bin/python3 -m pip install ethos-u-vela==3.10.0
cd ..
curl -L https://github.com/ARM-software/ML-zoo/raw/7c32b097f7d94aae2cd0b98a8ed5a3ba81e66b18/models/anomaly_detection/micronet_medium/tflite_int8/ad_medium_int8.tflite \
diff --git a/docs/sections/building.md b/docs/sections/building.md
index e84acf9..d20e570 100644
--- a/docs/sections/building.md
+++ b/docs/sections/building.md
@@ -90,17 +90,17 @@ Before proceeding, it is *essential* to ensure that the following prerequisites
>
> `export PATH=$(readlink -e resources_downloaded/env/bin):${PATH}`
-- Python 3.9 or above is installed. Check your current installed version of Python by running:
+- Python 3.10 or above is installed. Check your current installed version of Python by running:
```commandline
python3 --version
```
```log
- Python 3.9.7
+ Python 3.10.12
```
- > **Note:** If you have an older version of Python installed (< 3.9) see the
+ > **Note:** If you have an older version of Python installed (< 3.10) see the
> [Troubleshooting](./troubleshooting.md#how-to-update-python3-package-to-newer-version)
> for instruction on how to install and use it.
> **Note:** This scenario might be true if you are using an Arm Virtual Hardware instance.
@@ -121,7 +121,7 @@ Before proceeding, it is *essential* to ensure that the following prerequisites
```
```log
- pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.9)
+ pip 22.0.2 from /usr/lib/python3/dist-packages/pip
```
- Make
@@ -357,11 +357,11 @@ This fetches every model into the `resources_downloaded` directory. It also opti
for the default 128 MACs configuration of the Arm® *Ethos™-U55* NPU and for the default 256 MACs configuration of the
Arm® *Ethos™-U65* NPU.
-> **Note:** This script requires Python version 3.9 or higher. Please make sure all [build prerequisites](./building.md#build-prerequisites)
-> are satisfied. If your environment points to system installed Python3 that is an older version than 3.9, choose the
+> **Note:** This script requires Python version 3.10 or higher. Please make sure all [build prerequisites](./building.md#build-prerequisites)
+> are satisfied. If your environment points to system installed Python3 that is an older version than 3.10, choose the
> required version explicitly after installing it:
> ```sh
-> python3.9 ./set_up_default_resources.py
+> python3.10 ./set_up_default_resources.py
> ```
>
> **Note:** This script also installs required version of CMake into the virtual environment, which can be used by activating it.