Mavericks
OS X 10.9, also known as Mavericks, is out. There are a few things of note that differ from the instructions we give in the book for previous versions of OS X.
- A compiler, used to install software from source code, is now very easy to install, and Xcode tools are no longer needed. Just open a terminal window and type
gccfollowed by return. It will prompt you to download and install the command-line developer tools. The odd thing is that this doesn't actually installgccbutclang, an alternative compiler suite. Running the commandgccactually runsclang. The two tools are largely compatible, but some packages that compile fine withgccwon't work as-is withclang. - Python 2.7.5 is included with Mavericks. It even has numpy already installed.
- Git is pre-installed on Mavericks as well.


facebook