Skip to content

Instantly share code, notes, and snippets.

@cecepm
Last active December 23, 2015 17:09
Show Gist options
  • Save cecepm/6666459 to your computer and use it in GitHub Desktop.
Save cecepm/6666459 to your computer and use it in GitHub Desktop.
Install Scientific iPython on Mac OSX 10.8 (Mountain Lion)

iPython Notebook

Install iPython and prerequisites in virtualenv

mkvirtualenv ipy
pip install numpy
brew install gfortran
pip install scipy
brew install freetype
pip install matplotlib
brew install zmq
pip install pyzmq
pip install pygments
pip install jinja2
pip install ipython
pip install readline

Starting iPython Notebook

ipython notebook 

iPython QT Console

brew install pyqt
workon ipy
cdsitepackages
ln -s /usr/local/lib/python2.7/site-packages/PyQt4 .
ln -s /usr/local/lib/python2.7/site-packages/sip.so .

Starting iPython QT Console

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