From eafdcd9a61ea96e3b1685ea06f18162308bdc9a3 Mon Sep 17 00:00:00 2001 From: Jeff Paine Date: Sat, 14 Sep 2013 00:39:31 -0400 Subject: [PATCH 1/2] Update brew installation commands --- docs/starting/install/osx.rst | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/docs/starting/install/osx.rst b/docs/starting/install/osx.rst index 0711b1928..53323cb8a 100644 --- a/docs/starting/install/osx.rst +++ b/docs/starting/install/osx.rst @@ -54,19 +54,7 @@ line at the bottom of your ``~/.bashrc`` file Now, we can install Python 2.7: :: - $ brew install python --framework - -This will take a minute or two. Once that's complete, you'll have to add the -new Python scripts directory to your ``PATH`` - -.. code-block:: console - - export PATH=/usr/local/share/python:$PATH - -The ``--framework`` option tells Homebrew to compile a Framework-style Python -build, rather than a UNIX-style build. The outdated version of Python that -Snow Leopard comes packaged with is built as a Framework, so this helps avoid -some future module installation bugs. + $ brew install python Distribute & Pip From 4842bbb1a184f0c27b7e6d2bf4af4568929ea402 Mon Sep 17 00:00:00 2001 From: Jeff Paine Date: Sun, 15 Sep 2013 09:59:04 -0400 Subject: [PATCH 2/2] Add back export PATH=/usr/local/share/python:$PATH section --- docs/starting/install/osx.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/starting/install/osx.rst b/docs/starting/install/osx.rst index 53323cb8a..dc6676733 100644 --- a/docs/starting/install/osx.rst +++ b/docs/starting/install/osx.rst @@ -56,6 +56,13 @@ Now, we can install Python 2.7: :: $ brew install python +This will take a minute or two. Once that's complete, you'll have to add the +new Python scripts directory to your ``PATH`` + +.. code-block:: console + + export PATH=/usr/local/share/python:$PATH + Distribute & Pip ----------------