aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/gettingstarted-windows.rst
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2020-12-09 10:18:13 +0100
committerCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2020-12-09 11:18:30 +0000
commit75ad96e587f9068609dfb5e4cfb0d528076e7633 (patch)
tree8e0452db34413fa8893d287ab232ca3652fba21d /sources/pyside6/doc/gettingstarted-windows.rst
parent3547e40f6fd5d60fc316ab484e24a1962623e7c9 (diff)
doc: Update references to Qt6
* Updating versions, * Removing references to 5.x * Remove unavailable modules for Qt 6.0.0 * Comment unusable tutorials from the documentation Change-Id: I924953f97406ab8c5c04005a2d42dfbc03fdf7fa Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside6/doc/gettingstarted-windows.rst')
-rw-r--r--sources/pyside6/doc/gettingstarted-windows.rst34
1 files changed, 17 insertions, 17 deletions
diff --git a/sources/pyside6/doc/gettingstarted-windows.rst b/sources/pyside6/doc/gettingstarted-windows.rst
index d9eb1a61c..337715b59 100644
--- a/sources/pyside6/doc/gettingstarted-windows.rst
+++ b/sources/pyside6/doc/gettingstarted-windows.rst
@@ -1,19 +1,19 @@
Getting Started on Windows
==========================
-The Qt library has to be built with the same version of MSVC as Python and PySide6, this can be
+The Qt library has to be built with the same version of MSVC as Python and PySide, this can be
selected when using the online installer.
Requirements
------------
- * Qt package from `here`_ or a custom build of Qt 5.12+ (preferably Qt 5.15)
+ * Qt package from `here`_ or a custom build of Qt (preferably 6.0)
* A Python interpreter (version Python 3.6+). Preferably get it from the `official website`_.
* `MSVC2017`_ (or MSVC2019) for Python 3 on Windows,
* `CMake`_ version 3.1 or greater
* `Git`_ version 2 or greater
* `libclang`_ prebuilt version from the ``Qt Downloads`` page is recommended. We recommend
- libclang10 for PySide 5.15.
+ libclang10 for 6.0+.
* `OpenSSL`_ (optional for SSL support, Qt must have been configured using the same SSL library).
* ``venv`` or ``virtualenv`` is strongly recommended, but optional.
* ``sphinx`` package for the documentation (optional).
@@ -50,39 +50,39 @@ Setting up CLANG
~~~~~~~~~~~~~~~~
If you don't have libclang already in your system, you can download from the Qt servers,
-e.g. ``libclang-release_100-based-windows-vs2019_64.7z``.
+for example, ``libclang-release_100-based-windows-vs2019_64.7z``.
-Extract the files, and leave it on any desired path, e.g ``c:\``, and then set these two required
-environment variables::
+Extract the files, and leave it on any desired path, for example, ``c:``, and then set these two
+required environment variables::
set LLVM_INSTALL_DIR=c:\libclang
set PATH=C:\libclang\bin;%PATH%
-Getting PySide6
-~~~~~~~~~~~~~~~
+Getting PySide
+~~~~~~~~~~~~~~
Cloning the official repository can be done by::
git clone --recursive https://code.qt.io/pyside/pyside-setup
-Checking out the version that we want to build, e.g. 5.15::
+Checking out the version that we want to build, for example, 6.0::
- cd pyside-setup && git checkout 5.15
+ cd pyside-setup && git checkout 6.0
.. note:: Keep in mind you need to use the same version as your Qt installation
-Building PySide6
-~~~~~~~~~~~~~~~~
+Building PySide
+~~~~~~~~~~~~~~~
-Check your Qt installation path, to specifically use that version of qmake to build PySide6.
-e.g. ``E:\Qt\5.15.0\msvc2019_64\bin\qmake.exe``.
+Check your Qt installation path, to specifically use that version of qmake to build PySide.
+for example, ``E:\Qt\6.0.0\msvc2019_64\bin\qmake.exe``.
Build can take a few minutes, so it is recommended to use more than one CPU core::
python setup.py build --qmake=c:\path\to\qmake.exe --openssl=c:\path\to\openssl\bin --build-tests --ignore-git --parallel=8
-Installing PySide6
-~~~~~~~~~~~~~~~~~~
+Installing PySide
+~~~~~~~~~~~~~~~~~
To install on the current directory, just run::
@@ -92,6 +92,6 @@ Test installation
~~~~~~~~~~~~~~~~~
You can execute one of the examples to verify the process is properly working.
-Remember to properly set the environment variables for Qt and PySide6::
+Remember to properly set the environment variables for Qt and PySide::
python examples/widgets/widgets/tetrix.py