Skip to content

Commit

Permalink
doc/linux: recommend install pip3 from distro packaging
Browse files Browse the repository at this point in the history
Avoid overriding files in the system that shall be under package
manager control with who knows what is downloaded that day, as it can
introduce security issues.

Signed-off-by: Inaky Perez-Gonzalez <[email protected]>
  • Loading branch information
inaky-intc authored and Anas Nashif committed Jul 25, 2017
1 parent c58be92 commit cb290aa
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions doc/getting_started/installation_linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Install the required packages in a Ubuntu host system with:
.. code-block:: console
$ sudo apt-get install git make gcc g++ ncurses-dev \
doxygen dfu-util device-tree-compiler
doxygen dfu-util device-tree-compiler python-pip3
Install the required packages in a Fedora host system with:

Expand All @@ -64,14 +64,11 @@ Install the required packages in a Fedora host system with:
$ sudo dnf group install "Development Tools"
$ sudo dnf install git make gcc glibc-static \
libstdc++-static ncurses-devel \
doxygen dfu-util dtc
doxygen dfu-util dtc python3-pip
Install additional packages required for development with Zephyr::

$ curl -O 'https://bootstrap.pypa.io/get-pip.py'
$ ./get-pip.py
$ rm get-pip.py
$ pip3 install -r scripts/requirements.txt

.. _zephyr_sdk:
Expand Down

0 comments on commit cb290aa

Please sign in to comment.