I followed the advice of most pythonistas and set up a different version of Python with which to play than the one that comes built into Mac OS X. After scanning around, it seemed like the best way to handle things was to use homebrew, and then to follow up with pip. All was good up through numpy, and then things went bad. I can't get scipy to install nor matplotlib. After searching here at StackOverflow and trying a number of solutions, I finally stumbled across Chris Fonnesbeck's "Scipy Superpack", which promises to:
install recent 64-bit builds of Numpy (1.8) and Scipy (0.12), Matplotlib (1.3), iPython (0.14), Pandas (0.10), Statsmodels (0.5.0), Scikit-Learn 0.13, as well as PyMC (2.2) for OS X 10.8 (Mountain Lion) on Intel Macintosh.
That all sounds great to my noobie ears, but when I look at the install script, install_superpack.sh, it seems to be directing things to work with the system's version of python:
#!/bin/sh
PYTHON='/usr/bin/python'
GIT_FILENAME='git-1.7.7.3-intel-universal-snow-leopard'
GIT_VOLUME='/Volumes/Git 1.7.7.3 Snow Leopard Intel Universal/'
GFORTRAN='gcc-42-5666.3-darwin11.pkg'
SUDO='sudo'
Should I change the PYTHON variable above or leave it be and make adjustments to the PYTHON ENVIRONMENT (yes?! No!?) thingamabob I have read about elsewhere? What else, if anything, should I edit? Or should I just back away from this script since I clearly am out of my depth?
I should note that I would dearly love to get matplotlib running on my machine because I'd like to play with making histograms for some text analysis I am pursuing.