Skip to content

Instantly share code, notes, and snippets.

@gourneau
Forked from westurner/setup_pandas_notebook.sh
Last active May 2, 2024 04:53
Show Gist options
  • Save gourneau/7800364 to your computer and use it in GitHub Desktop.
Save gourneau/7800364 to your computer and use it in GitHub Desktop.
Setting up dev pandas with OS X 10.9 and IPython notebook
First install brew if you don't have it and XCode if you don't have them already. Also get pip if you don't have it.
Get the 10.9 GFortran from http://coudert.name/software/gfortran-4.8.2-Mavericks.dmg
(http://gcc.gnu.org/wiki/GFortranBinaries)
brew install readline
brew install zeromq
sudo pip install ipython pyzmq tornado pygments jinja2
#optional python -c 'from IPython.external import mathjax; mathjax.install_mathjax()'
brew install pkg-config
brew tap homebrew/dupes
brew install freetype
sudopip install numpy python-dateutil pytz scipy matplotlib cython patsy
git clone git@github.com:pydata/pandas.git
cd pandas
sudo python setup.py install
sudo pip install statsmodels
start the notebook like this
ipython notebook --pylab=inline
@LidamaoHub
Copy link

sudo pip install numpy python-dateutil pytz scipy matplotlib cython patsy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment