doc: Fix pip3 install command
The getting started guide says to run:
pip3 install -r --user zephyr/scripts/requirements.txt
but this is broken. It should be:
pip3 install --user -r zephyr/scripts/requirements.txt
This fixes #10817 and is a regression from:
0d811b9aee
Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
This commit is contained in:
parent
7fd7be0fc6
commit
e8420d91bb
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ Next, install additional Python packages required by Zephyr in a shell or
|
|||
.. code-block:: console
|
||||
|
||||
# Linux
|
||||
pip3 install -r --user zephyr/scripts/requirements.txt
|
||||
pip3 install --user -r zephyr/scripts/requirements.txt
|
||||
|
||||
# macOS and Windows
|
||||
pip3 install -r zephyr/scripts/requirements.txt
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue