From 58bbf2a25ea25c412b26d3d19bd9a5988638a3c2 Mon Sep 17 00:00:00 2001 From: Ben Norquist Date: Sun, 13 May 2018 20:35:43 -0700 Subject: [PATCH 1/3] added high_sierra setup instructions --- docs/starting/install3/osx.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/starting/install3/osx.rst b/docs/starting/install3/osx.rst index f6ef4e828..683e52399 100644 --- a/docs/starting/install3/osx.rst +++ b/docs/starting/install3/osx.rst @@ -107,7 +107,9 @@ The rest of the guide will assume that ``python`` references Python 3. # Do I have a Python 3 installed? $ python --version Python 3.6.4 # Success! - # If you still see 2.7 ensure in PATH /usr/local/bin/ takes pecedence over /usr/bin/ + # If you still see 2.7 ensure in PATH /usr/local/bin/ takes precedence over /usr/bin/ + # If you are running OSX High Sierra add this to your .bash_profile or .profile instead + # export PATH="/usr/local/opt/python/libexec/bin:$PATH" Pipenv & Virtual Environments ----------------------------- From fdc5e3bfaab5e0b19230e03de0f8b0c3b4dac375 Mon Sep 17 00:00:00 2001 From: Ben Norquist Date: Tue, 20 Nov 2018 12:06:14 -0600 Subject: [PATCH 2/3] add path step for mojave and high sierra --- docs/starting/install3/osx.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/starting/install3/osx.rst b/docs/starting/install3/osx.rst index 683e52399..9d5b81665 100644 --- a/docs/starting/install3/osx.rst +++ b/docs/starting/install3/osx.rst @@ -54,6 +54,12 @@ Once you've installed Homebrew, insert the Homebrew directory at the top of your :envvar:`PATH` environment variable. You can do this by adding the following line at the bottom of your :file:`~/.profile` file +.. code-block:: console + + export PATH="/usr/local/opt/python/libexec/bin:$PATH" + +If you have OS X 10.12 (Sierra) or older use this line instead + .. code-block:: console export PATH=/usr/local/bin:/usr/local/sbin:$PATH From c178db7792e6a5a964830be20f28a0fc6b55ed03 Mon Sep 17 00:00:00 2001 From: Ben Norquist Date: Tue, 20 Nov 2018 12:07:27 -0600 Subject: [PATCH 3/3] redundant instructions --- docs/starting/install3/osx.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/starting/install3/osx.rst b/docs/starting/install3/osx.rst index 9d5b81665..b8482196c 100644 --- a/docs/starting/install3/osx.rst +++ b/docs/starting/install3/osx.rst @@ -114,8 +114,6 @@ The rest of the guide will assume that ``python`` references Python 3. $ python --version Python 3.6.4 # Success! # If you still see 2.7 ensure in PATH /usr/local/bin/ takes precedence over /usr/bin/ - # If you are running OSX High Sierra add this to your .bash_profile or .profile instead - # export PATH="/usr/local/opt/python/libexec/bin:$PATH" Pipenv & Virtual Environments -----------------------------