From 2463a5e8596f5c11381ec9799569208788d2e090 Mon Sep 17 00:00:00 2001 From: Jan Date: Mon, 6 Feb 2023 10:23:35 +0100 Subject: [PATCH] Add requirements installation to README.md Add instructions on installing required Python dependencies to the Quick Start section. Signed-off-by: Jan Bruckner --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1fdd3f150..e44c8b598 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,11 @@ Then to run the image: ``` Where `` is a directory from the host that will be mounted on the container at startup (usually a local checkout of Mbed TLS). -If `` is the root of an Mbed TLS source tree, the tests can be run with: +Assuming `` is the root of an Mbed TLS source tree, first install the requirements: +```sh +./scripts/min_requirements.py --user +``` +Then the tests can be run with: ```sh ./tests/scripts/all.sh --no-armcc ```