doc: win: Invoke pip3 instead of pip to be safe

It has been observed that users might "default" to Python2 and pip
will therefore install packages for the wrong Python. pip3 appears to
always be installed when Python3 is installed, so we invoke pip3
instead of pip2 to be safe.

Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
This commit is contained in:
Sebastian Bøe 2018-04-16 14:41:05 +02:00 committed by Anas Nashif
parent b35274a4e9
commit 558406932b
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ packages from their respective websites.
#. Install the required Python modules::
cd %userprofile%\zephyr
pip install --user -r scripts/requirements.txt
pip3 install --user -r scripts/requirements.txt
#. If you require pyocd, an open source python2 library for programming and
debugging ARM Cortex-M microcontrollers, use this command::