aboutsummaryrefslogtreecommitdiffstats
path: root/docs/installing/windows.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/installing/windows.rst')
-rw-r--r--docs/installing/windows.rst33
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/installing/windows.rst b/docs/installing/windows.rst
new file mode 100644
index 000000000..899e2e356
--- /dev/null
+++ b/docs/installing/windows.rst
@@ -0,0 +1,33 @@
+.. _installing_windows:
+
+Installing PySide on a Windows System
+=====================================
+
+Installing prerequisites
+------------------------
+
+Install latest ``pip`` distribution: download `get-pip.py
+<https://bootstrap.pypa.io/get-pip.py>`_ and run it using
+the ``python`` interpreter.
+
+Installing PySide
+-----------------
+
+To install PySide on Windows you can choose from the following options:
+
+#. Use pip to install the ``wheel`` binary packages:
+
+ ::
+
+ pip install -U PySide
+
+#. Use setuptools to install the ``egg`` binary packages (deprecated):
+
+ ::
+
+ easy_install -U PySide
+
+.. note::
+
+ Provided binaries are without any other external dependencies.
+ All required Qt libraries, development tools and examples are included.