summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-04-07 17:04:57 +1200
committerCommit Bot <commit-bot@chromium.org>2021-04-07 20:19:23 +0000
commit2867193866966106225b19a3b7d5d18ba43489e8 (patch)
tree8821ec9def18e0fb550055ada778c2cd355a88e8
parentcaaef81e2ddb1767f29623fe35a39a142042edd3 (diff)
downloadchrome-ec-2867193866966106225b19a3b7d5d18ba43489e8.tar.gz
zephyr: zmake: Avoid using pip3 for install
When running on a distribution it seems better to use the standard install procedure if possible, with pip3 reserved for things that are not available. If users have an old distribution, they will presumably fall back to using pip3 anyway. Update to use 'apt-get install' in the docs. BUG=b:181253613 BRANCH=none TEST=check it in gitiles Signed-off-by: Simon Glass <sjg@chromium.org> Change-Id: I539518a3009e73cb948145ca68f868fa5588909d Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2809779 Reviewed-by: Yuval Peress <peress@chromium.org>
-rw-r--r--docs/zephyr_build.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/zephyr_build.md b/docs/zephyr_build.md
index f9bdfee033..79a3c7e42f 100644
--- a/docs/zephyr_build.md
+++ b/docs/zephyr_build.md
@@ -70,9 +70,8 @@ Ensure that ~/.local/bin in on your PATH
You may also need to install these items:
```bash
-sudo apt-get install cmake ninja-build python3-pyelftools gcc-multilib
-pip3 install pykwalify
-pip3 install colorama
+sudo apt-get install cmake ninja-build python3-pyelftools gcc-multilib \
+ python3-pykwalify python3-colorama
```
You must reinstall zmake after any `repo sync` since new features may have been