Skip to content

Instantly share code, notes, and snippets.

@westurner
Created July 29, 2012 07:53
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save westurner/3196564 to your computer and use it in GitHub Desktop.
Save westurner/3196564 to your computer and use it in GitHub Desktop.
Setup IPython Notebook and Pandas for OSX
#!/bin/sh
setup_brew () {
if ![-f "/usr/local/bin/brew"]; then
/usr/bin/ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)"
fi
}
setup_ipython () {
brew install readline
brew install zeromq
pip install ipython pyzmq tornado pygments
python -c 'from IPython.external import mathjax; mathjax.install_mathjax()'
}
setup_pandas () {
brew install gfortran
brew install pkg-config
brew tap homebrew/dupes
brew install homebrew/dupes/freetype
pip install numpy python-dateutil pytz scipy matplotlib statsmodels
pip install pandas
}
setup_brew && setup_ipython && setup_pandas && ipython notebook --pylab=inline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment