I would like to install Python Pandas library (0.8.1) on Mac OS X 10.6.8. This library needs Numpy>=1.6.
I tried this
$ sudo easy_install pandas
Sear
This worked for me under 10.7.5 with EPD_free-7.3-2 from Enthought:
Install EPD free, then follow the step in the following link to create .bash_profile file.
http://redfinsolutions.com/blog/creating-bashprofile-your-mac
And add the following to the file.
PATH="/Library/Frameworks/Python.framework/Versions/Current/bin:$(PATH)}"
export PATH
Execute the following command in Terminal
$ sudo easy_install pandas
When finished, launch PyLab and type:
In [1]: import pandas
In [2]: plot(arange(10))
This should open a plot with a diagonal straight line.