aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/gettingstarted-linux.rst
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/doc/gettingstarted-linux.rst')
-rw-r--r--sources/pyside6/doc/gettingstarted-linux.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/sources/pyside6/doc/gettingstarted-linux.rst b/sources/pyside6/doc/gettingstarted-linux.rst
index 1f8ed9bcc..8db657dac 100644
--- a/sources/pyside6/doc/gettingstarted-linux.rst
+++ b/sources/pyside6/doc/gettingstarted-linux.rst
@@ -21,7 +21,6 @@ which arbitrary modules can be installed and which can be removed after use::
python -m venv testenv
source testenv/bin/activate
- pip install -r requirements.txt # General dependencies, documentation, and examples.
will create and use a new virtual environment, which is indicated by the command prompt changing.
@@ -49,6 +48,10 @@ Checking out the version that we want to build, for example 6.0::
cd pyside-setup && git checkout 6.0
+Install the general dependencies::
+
+ pip install -r requirements.txt
+
.. note:: Keep in mind you need to use the same version as your Qt installation.
Additionally, :command:`git checkout -b 6.0 --track origin/6.0` could be a better option
in case you want to work on it.