aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/doc
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2019-03-21 13:59:20 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2019-03-25 14:15:48 +0000
commit2d6b78ea3307b0193858d44863f41b1e40645a2f (patch)
tree9913aae3e5bb0fb9e790372426adfdc410dfa845 /sources/pyside2/doc
parent24eaef7c220766d36eda84b073ba78af8e82673e (diff)
Doc: Add subtitles to Getting Started to improve readability
Also added the necessary leading paragraphs. Change-Id: Ie8682e878aa8470ee8ca1f3231d0c8ccc14bc68d Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
Diffstat (limited to 'sources/pyside2/doc')
-rw-r--r--sources/pyside2/doc/gettingstarted.rst18
1 files changed, 16 insertions, 2 deletions
diff --git a/sources/pyside2/doc/gettingstarted.rst b/sources/pyside2/doc/gettingstarted.rst
index 0a58226a7..cc915a5cb 100644
--- a/sources/pyside2/doc/gettingstarted.rst
+++ b/sources/pyside2/doc/gettingstarted.rst
@@ -2,13 +2,21 @@
Getting Started
===============
-To get started with |project|, install the following prerequisites:
+To develop with |project|, you must install Python, Clang, and |project|.
+
+Preparing for the Installation
+==============================
+
+Before you can install |project|, you must install the following software:
* Python 3.5+ or 2.7
* libclang 5.0+ (for Qt 5.11) or 6.0+ (for Qt 5.12)
* Recommended: a virtual environment, such as `venv <https://docs.python.org/3/library/venv.html>`_ or `virtualenv <https://virtualenv.pypa.io/en/stable/installation>`_
-With these installed, you are ready to install the |project|
+Installing |project|
+====================
+
+After you have installed the required software, you are ready to install the |project|
packages using the pip wheel. Run the following command from your command
prompt to install::
@@ -18,6 +26,9 @@ or::
pip install --index-url=http://download.qt.io/snapshots/ci/pyside/5.12/latest pyside2 --trusted-host download.qt.io
+Testing the Installation
+========================
+
Now that you have |project| installed, you can test your setup by running the following Python
constructs to print version information:
@@ -25,6 +36,9 @@ constructs to print version information:
:start-line: 5
:end-line: 32
+Creating a Simple Application
+=============================
+
Your |project| setup is ready, so try exploring it further by developing a simple application
that prints "Hello World" in several languages. The following instructions will
guide you through the development process: