From 7332eecb5524cc1923ddf6b16792fa9af1676415 Mon Sep 17 00:00:00 2001 From: schneider <schneider@blinkenlichts.net> Date: Wed, 8 Apr 2020 21:30:42 +0200 Subject: [PATCH] fix(doc): Cleanup of how to install python deps --- Documentation/how-to-build.rst | 35 +++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/Documentation/how-to-build.rst b/Documentation/how-to-build.rst index bf3f9a45c..545bb5351 100644 --- a/Documentation/how-to-build.rst +++ b/Documentation/how-to-build.rst @@ -63,39 +63,44 @@ Dependencies .. code-block:: shell-session pacman -S meson - - - macOS - + + - macOS + .. code-block:: shell-session - + brew install ninja pip3 install --user meson # see https://mesonbuild.com/Getting-meson.html - you will have to add ~/.local/bin to your PATH. * One of three CRC packages are required. Pick one: - - for all OS's - + - Ubuntu / Debian / macOS + .. code-block:: shell-session - + pip3 install --user crc16 - + +or + .. code-block:: shell-session - + pip3 install --user crcmod - + + - Arch + .. code-block:: shell-session - - pip3 install --user crcmod - + + pacman -S python-crc16 + * **python3-pillow**: Python Image Library .. code-block:: shell-session + pip3 install --user pillow - + - Arch .. code-block:: shell-session - pacman -S python-crc16 python-pillow + pacman -S python-pillow .. _ARM's GNU toolchain: https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads -- GitLab