From 558406932b187d743b2c46d3790c0e33eb00e330 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20B=C3=B8e?= Date: Mon, 16 Apr 2018 14:41:05 +0200 Subject: [PATCH] doc: win: Invoke pip3 instead of pip to be safe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- doc/getting_started/installation_win.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/getting_started/installation_win.rst b/doc/getting_started/installation_win.rst index 6afd0315e1b..a7235581e0a 100644 --- a/doc/getting_started/installation_win.rst +++ b/doc/getting_started/installation_win.rst @@ -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::