aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2014-04-30 03:21:42 +0200
committerChristian Tismer <tismer@stackless.com>2014-04-30 03:21:42 +0200
commit16272256a129e3d4185b509994967fcd859e2134 (patch)
tree61a38b4f115c1da7ff8e264d00f4769040bd31be
parent0d2cb515d01388f1b5eb6e5bac51339d1dcf90a1 (diff)
Add a first Mac OS X installation section
-rw-r--r--README.rst48
1 files changed, 47 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index d8dfbc4e1..14068be9e 100644
--- a/README.rst
+++ b/README.rst
@@ -44,7 +44,7 @@ To install PySide on Windows you can choose from the following options:
pip install -U PySide --use-wheel -f http://download.qt-project.org/official_releases/pyside/
-#. Use setuptools to install the `egg` binary packages:
+#. Use setuptools to install the `egg` binary packages (deprecated):
::
@@ -58,6 +58,52 @@ To install PySide on Windows you can choose from the following options:
Provided binaries are without any other external dependencies.
All required Qt libraries, development tools and examples are included.
+
+Installing PySide on a Mac OS X System
+--------------------------------------
+
+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
+
+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 --use-wheel -f http://download.qt-project.org/official_releases/pyside/
+
+#. Use setuptools to install the `egg` binary packages (deprecated):
+
+ ::
+
+ easy_install -U PySide
+
+After the installation, the following call must be made manually:
+
+ ::
+
+ pyside_postinstall.py -install
+
+If for some reason the script is not callable, it can alternatively be
+run directly by:
+
+ ::
+
+ python $(which pyside_postinstall.py) -install
+
+.. note::
+
+ Provided binaries are without any other external dependencies.
+ All required Qt libraries, development tools and examples are included.
+
+
Installing PySide on a UNIX System
----------------------------------