diff options
| author | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2023-02-16 12:14:08 +0100 |
|---|---|---|
| committer | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2023-02-16 14:29:37 +0100 |
| commit | 7d1cbfe817ea2cef7a9c8dd3a9e5df188675835e (patch) | |
| tree | 1a9b88af7f029bbe9166fbc7feea9452a69fbf7e /sources/pyside6/doc/gettingstarted | |
| parent | 978bf329f781c8b0c7261e72e245b63a5858b8f3 (diff) | |
doc: update versions and broken links
Pick-to: 6.2 6.4
Change-Id: Ib6223ac742b7c7777d2b6110a395b508e5031a75
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io>
Diffstat (limited to 'sources/pyside6/doc/gettingstarted')
| -rw-r--r-- | sources/pyside6/doc/gettingstarted/index.rst | 2 | ||||
| -rw-r--r-- | sources/pyside6/doc/gettingstarted/linux.rst | 12 | ||||
| -rw-r--r-- | sources/pyside6/doc/gettingstarted/macOS.rst | 10 | ||||
| -rw-r--r-- | sources/pyside6/doc/gettingstarted/windows.rst | 6 |
4 files changed, 15 insertions, 15 deletions
diff --git a/sources/pyside6/doc/gettingstarted/index.rst b/sources/pyside6/doc/gettingstarted/index.rst index 453250248..379db6294 100644 --- a/sources/pyside6/doc/gettingstarted/index.rst +++ b/sources/pyside6/doc/gettingstarted/index.rst @@ -4,7 +4,7 @@ Getting Started .. important:: This page is focused on building |project| **from source**. If you just want to install |pymodname|, you need to run: :command:`pip install pyside6`. - For more details, refer to our `Quick Start`_ guide. Additionally, you can check the + For more details, refer to our :ref:`quick-start` guide. Additionally, you can check the :ref:`FAQ <faq>` related to the project. .. _Quick Start: quickstart.html diff --git a/sources/pyside6/doc/gettingstarted/linux.rst b/sources/pyside6/doc/gettingstarted/linux.rst index 7d4000da2..f5ef71bae 100644 --- a/sources/pyside6/doc/gettingstarted/linux.rst +++ b/sources/pyside6/doc/gettingstarted/linux.rst @@ -44,16 +44,16 @@ Cloning the official repository can be done by:: git clone https://code.qt.io/pyside/pyside-setup -Checking out the version that we want to build, for example 6.0:: +Checking out the version that we want to build, for example 6.4:: - cd pyside-setup && git checkout 6.2 + cd pyside-setup && git checkout 6.4 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.2 --track origin/6.2` could be a better option + Additionally, :command:`git checkout -b 6.4 --track origin/6.4` could be a better option in case you want to work on it. Building and Installing (setuptools) @@ -63,15 +63,15 @@ The `setuptools` approach uses the `setup.py` file to execute the build, install, and packaging steps. Check your Qt installation path, to specifically use that version of qtpaths to build PySide. -for example, :command:`/opt/Qt/6.0.0/gcc_64/bin/qtpaths`. +for example, :command:`/opt/Qt/6.4.2/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.4.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8 + python setup.py build --qtpaths=/opt/Qt/6.4.2/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.4.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8 + python setup.py install --qtpaths=/opt/Qt/6.4.2/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8 Building and Installing (cmake) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/sources/pyside6/doc/gettingstarted/macOS.rst b/sources/pyside6/doc/gettingstarted/macOS.rst index 7c3784b02..9d57c7ceb 100644 --- a/sources/pyside6/doc/gettingstarted/macOS.rst +++ b/sources/pyside6/doc/gettingstarted/macOS.rst @@ -47,9 +47,9 @@ Cloning the official repository can be done by:: git clone https://code.qt.io/pyside/pyside-setup -Checking out the version that we want to build, for example, 6.2:: +Checking out the version that we want to build, for example, 6.4:: - cd pyside-setup && git checkout 6.2 + cd pyside-setup && git checkout 6.4 Install the general dependencies:: @@ -61,18 +61,18 @@ Building PySide ~~~~~~~~~~~~~~~ Check your Qt installation path, to specifically use that version of qtpaths to build PySide. -for example, ``/opt/Qt/6.4.0/gcc_64/bin/qtpaths``. +for example, ``/opt/Qt/6.4.2/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.4.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8 + python setup.py build --qtpaths=/opt/Qt/6.4.2/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8 Installing PySide ~~~~~~~~~~~~~~~~~ To install on the current directory, just run:: - python setup.py install --qtpaths=/opt/Qt/6.4.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8 + python setup.py install --qtpaths=/opt/Qt/6.4.2/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8 Test installation ~~~~~~~~~~~~~~~~~ diff --git a/sources/pyside6/doc/gettingstarted/windows.rst b/sources/pyside6/doc/gettingstarted/windows.rst index c80d0176c..dd266c8f4 100644 --- a/sources/pyside6/doc/gettingstarted/windows.rst +++ b/sources/pyside6/doc/gettingstarted/windows.rst @@ -55,9 +55,9 @@ Cloning the official repository can be done by:: git clone https://code.qt.io/pyside/pyside-setup -Checking out the version that we want to build, for example, 6.2:: +Checking out the version that we want to build, for example, 6.4:: - cd pyside-setup && git checkout 6.2 + cd pyside-setup && git checkout 6.4 Install the general dependencies:: @@ -69,7 +69,7 @@ Building PySide ~~~~~~~~~~~~~~~ Check your Qt installation path, to specifically use that version of qtpaths to build PySide. -for example, ``C:\Qt\6.4.0\msvc2019_64\bin\qtpaths.exe``. +for example, ``C:\Qt\6.4.2\msvc2019_64\bin\qtpaths.exe``. Build can take a few minutes, so it is recommended to use more than one CPU core:: |
