From 20bcb0bd02eadb731bff609ccd1092141cce3791 Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Sat, 17 Oct 2015 14:24:00 -0400 Subject: [PATCH 1/2] add note about XCode commandline tools Installing XCode isn't enough - minus the commandline tools, you'll get c compiler errors when you `brew install python`. --- docs/starting/install/osx.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/starting/install/osx.rst b/docs/starting/install/osx.rst index fdf76dd1a..8ada42f50 100644 --- a/docs/starting/install/osx.rst +++ b/docs/starting/install/osx.rst @@ -32,6 +32,10 @@ package. In combination, the software can cause issues that are difficult to diagnose. +.. note:: + If you perform a fresh install of XCode, you will also need to add the + commandline tools by running `xcode-select --install` on the terminal. + While OS X comes with a large number of UNIX utilities, those familiar with Linux systems will notice one key component missing: a decent package manager. `Homebrew `_ fills this void. From d7c17e02ec230194bbe7db51bd87678106ddbb79 Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Sun, 18 Oct 2015 23:34:28 -0400 Subject: [PATCH 2/2] double backticks --- docs/starting/install/osx.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/starting/install/osx.rst b/docs/starting/install/osx.rst index 8ada42f50..0de724f1d 100644 --- a/docs/starting/install/osx.rst +++ b/docs/starting/install/osx.rst @@ -34,7 +34,7 @@ package. .. note:: If you perform a fresh install of XCode, you will also need to add the - commandline tools by running `xcode-select --install` on the terminal. + commandline tools by running ``xcode-select --install`` on the terminal. While OS X comes with a large number of UNIX utilities, those familiar with Linux systems will notice one key component missing: a decent package manager.