From e63edfc9d4a1fd9703c9c3ec02ee460d24109b60 Mon Sep 17 00:00:00 2001 From: Roman Lacko Date: Wed, 14 May 2014 00:30:43 +0200 Subject: Refactoring docs/index.rst into separate rst files --- docs/installing/linux.rst | 9 +++++++++ docs/installing/macosx.rst | 38 ++++++++++++++++++++++++++++++++++++++ docs/installing/windows.rst | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 docs/installing/linux.rst create mode 100644 docs/installing/macosx.rst create mode 100644 docs/installing/windows.rst (limited to 'docs/installing') 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 +`_. 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 +`_ and run it using +the ``python`` interpreter. + +You need to install or build Qt 4.8 first, see the `Qt Project Documentation +`_. + +Alternatively you can use `Homebrew `_ 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 +`_ 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. -- cgit v1.2.3