doc: getting_started: add missing python3-venv installation

The venv package is not installed by default on Ubuntu, however, it is
required to follow the virtual environment installation path.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2022-06-08 15:32:14 -07:00 committed by Carles Cufí
parent 0e1d86c6bb
commit 3009b8d9e6

View file

@ -234,6 +234,12 @@ reason it is suggested to use `Python virtual environments`_.
.. group-tab:: Install within virtual environment
#. Use ``apt`` to install Python ``venv`` package:
.. code-block:: bash
sudo apt install python3-venv
#. Create a new virtual environment:
.. code-block:: bash