From 3009b8d9e685f5ca23808687c5108074a121cf6c Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Wed, 8 Jun 2022 15:32:14 -0700 Subject: [PATCH] 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 --- doc/develop/getting_started/index.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/develop/getting_started/index.rst b/doc/develop/getting_started/index.rst index f0709bc361..50200b99fb 100644 --- a/doc/develop/getting_started/index.rst +++ b/doc/develop/getting_started/index.rst @@ -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