From 555a4bffde1c9dc1ddcf88baeccc678566369926 Mon Sep 17 00:00:00 2001 From: James Peach Date: Mon, 10 May 2021 19:37:52 +1000 Subject: [PATCH] Document that python3-pip is a build dependency. The python3-pip package is needed on both Ubuntu and Fedora. Signed-off-by: James Peach --- bazel/README.md | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/bazel/README.md b/bazel/README.md index 46835c18a8a35..1260fc1d36feb 100644 --- a/bazel/README.md +++ b/bazel/README.md @@ -54,22 +54,33 @@ for how to update or override dependencies. On Ubuntu, run the following: ```console sudo apt-get install \ - libtool \ - cmake \ - automake \ autoconf \ + automake \ + cmake \ + curl \ + libtool \ make \ ninja-build \ - curl \ + patch \ + python3-pip \ unzip \ - virtualenv \ - patch + virtualenv ``` ### Fedora On Fedora (maybe also other red hat distros), run the following: ```console - dnf install cmake libtool libstdc++ libstdc++-static libatomic ninja-build lld patch aspell-en + dnf install \ + aspell-en \ + cmake \ + libatomic \ + libstdc++ \ + libstdc++-static \ + libtool \ + lld \ + ninja-build \ + patch \ + python3-pip ``` ### Linux