aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sources/pyside6/doc/gettingstarted-linux.rst5
-rw-r--r--sources/pyside6/doc/gettingstarted-macOS.rst5
-rw-r--r--sources/pyside6/doc/gettingstarted-windows.rst5
3 files changed, 12 insertions, 3 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.
diff --git a/sources/pyside6/doc/gettingstarted-macOS.rst b/sources/pyside6/doc/gettingstarted-macOS.rst
index 4bb99f7c9..21e9af393 100644
--- a/sources/pyside6/doc/gettingstarted-macOS.rst
+++ b/sources/pyside6/doc/gettingstarted-macOS.rst
@@ -24,7 +24,6 @@ which arbitrary modules can be installed and which can be removed after use::
python -m venv testenv # your interpreter could be called 'python3'
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.
@@ -52,6 +51,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
Building PySide
diff --git a/sources/pyside6/doc/gettingstarted-windows.rst b/sources/pyside6/doc/gettingstarted-windows.rst
index 63e187682..369cb95eb 100644
--- a/sources/pyside6/doc/gettingstarted-windows.rst
+++ b/sources/pyside6/doc/gettingstarted-windows.rst
@@ -28,7 +28,6 @@ which arbitrary modules can be installed and which can be removed after use::
python -m venv testenv
call testenv\Scripts\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.
@@ -60,6 +59,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
Building PySide