aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2014-05-01 05:56:54 +0200
committerChristian Tismer <tismer@stackless.com>2014-05-01 05:56:54 +0200
commitf9fe6646d94260be27b67617c9de6dd16c6c5fd0 (patch)
tree5a68e160b732b0c65e69de06979e6cd8bcfaec96
parent2fce12dac1a35b81fff878b1ad76ba61d3fd74d5 (diff)
Almost done. But I need to talk about MACOSX_DEPLOYMENT_TARGET
-rw-r--r--README.rst19
1 files changed, 18 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 47b0f1c79..eae0422c4 100644
--- a/README.rst
+++ b/README.rst
@@ -319,7 +319,10 @@ wait for their completion before you proceed.
::
- $ sudo apt-get install build-essential git cmake libqt4-dev libphonon-dev python2.7-dev libxml2-dev libxslt1-dev qtmobility-dev
+ $ brew install install python cmake qt
+
+Remark: This installs Homebrew Python, which is fine for you as a single user.
+If you are considering to build for externals, see the section on XXX
#. Install latest ``pip`` distribution into the Python you
installed in the first step: download `get-pip.py
@@ -332,6 +335,20 @@ wait for their completion before you proceed.
$ wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py
$ sudo python2.7 get-pip.py
+.. note::
+
+ There are situations with older Python versions, where the above procedure does not work.
+ You can then use this last-resort work-around (tested):
+
+ ::
+
+ $ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap-py24/ez_setup.py'
+ $ sudo python2.7 ez_setup.py
+ $ sudo easy_install pip
+ $ sudo pip install setuptools -U
+ $ sudo pip install wheel -U
+
+
#. Install latest ``wheel`` distribution:
::