aboutsummaryrefslogtreecommitdiffstats
path: root/docs/installing
diff options
context:
space:
mode:
authorRoman Lacko <backup.rlacko@gmail.com>2014-05-14 00:30:43 +0200
committerRoman Lacko <backup.rlacko@gmail.com>2014-05-14 00:30:43 +0200
commite63edfc9d4a1fd9703c9c3ec02ee460d24109b60 (patch)
tree3ba2514b7268106d2e238d8d1abe2a86a0e751bd /docs/installing
parenta9a0f27bb22a8a96f26358e49cc08f5046b350f3 (diff)
Refactoring docs/index.rst into separate rst files
Diffstat (limited to 'docs/installing')
-rw-r--r--docs/installing/linux.rst9
-rw-r--r--docs/installing/macosx.rst38
-rw-r--r--docs/installing/windows.rst33
3 files changed, 80 insertions, 0 deletions
diff --git a/docs/installing/linux.rst b/docs/installing/linux.rst
new file mode 100644
index 000000000..2fefd7c42
--- /dev/null
+++ b/docs/installing/linux.rst
@@ -0,0 +1,9 @@
+.. _installing_linux:
+
+Installing PySide on a Linux System
+===================================
+
+We do not provide binaries for Linux. Please read
+the build instructions in section
+`Building PySide on a Linux System
+<http://pyside.readthedocs.org/en/latest/building/linux.html>`_.
diff --git a/docs/installing/macosx.rst b/docs/installing/macosx.rst
new file mode 100644
index 000000000..4e44e995f
--- /dev/null
+++ b/docs/installing/macosx.rst
@@ -0,0 +1,38 @@
+.. _installing_macosx:
+
+Installing PySide on a Mac OS X 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.
+
+You need to install or build Qt 4.8 first, see the `Qt Project Documentation
+<http://qt-project.org/doc/qt-4.8/install-mac.html>`_.
+
+Alternatively you can use `Homebrew <http://brew.sh/>`_ and install Qt with
+
+::
+
+ $ brew install qt
+
+Installing PySide
+-----------------
+
+To install PySide on Mac OS X you can choose from the following options:
+
+#. Use pip to install the ``wheel`` binary packages:
+
+ ::
+
+ $ pip install -U PySide
+
+
+After the installation, the following call must be made manually:
+
+::
+
+ $ pyside_postinstall.py -install
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.