aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/gettingstarted-linux.rst
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2022-09-14 03:01:05 +0000
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2022-09-14 03:01:05 +0000
commit568a50e59201fd8e681b985cf39e5133253d0760 (patch)
tree5cefc79c2487b9f552e84fb19aff47cbc6c51a93 /sources/pyside6/doc/gettingstarted-linux.rst
parent07bb660abd2cfc772f15b8639ae6847e8c4c4b07 (diff)
parentba91461927bb71377e147830183aa6fcf2a72567 (diff)
Merge branch 6.3 into wip/6.3_pypy
Diffstat (limited to 'sources/pyside6/doc/gettingstarted-linux.rst')
-rw-r--r--sources/pyside6/doc/gettingstarted-linux.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/sources/pyside6/doc/gettingstarted-linux.rst b/sources/pyside6/doc/gettingstarted-linux.rst
index 900da999e..d32412fdf 100644
--- a/sources/pyside6/doc/gettingstarted-linux.rst
+++ b/sources/pyside6/doc/gettingstarted-linux.rst
@@ -46,14 +46,14 @@ Cloning the official repository can be done by::
Checking out the version that we want to build, for example 6.0::
- cd pyside-setup && git checkout 6.0
+ cd pyside-setup && git checkout 6.2
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
+ Additionally, :command:`git checkout -b 6.2 --track origin/6.2` could be a better option
in case you want to work on it.
Building and Installing (setuptools)
@@ -67,11 +67,11 @@ for example, :command:`/opt/Qt/6.0.0/gcc_64/bin/qtpaths`.
Build can take a few minutes, so it is recommended to use more than one CPU core::
- python setup.py build --qtpaths=/opt/Qt/6.0.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
+ python setup.py build --qtpaths=/opt/Qt/6.2.1/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
To install on the current directory, just run::
- python setup.py install --qtpaths=/opt/Qt/6.0.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
+ python setup.py install --qtpaths=/opt/Qt/6.2.1/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
Building and Installing (cmake)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~