Skip to content

Instantly share code, notes, and snippets.

@svs14
Last active January 3, 2016 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svs14/23d80750b453c8905067 to your computer and use it in GitHub Desktop.
Save svs14/23d80750b453c8905067 to your computer and use it in GitHub Desktop.
Installs scientific python software on OS X 10.11
#!/bin/bash
#
# Installs python specific software
# for scientific applications on OSX 10.11
#
# Install gcc (includes fortran)
brew install gcc
# Install scientific packages
pip install numpy
pip install scipy
pip install matplotlib
pip install scikit-learn
pip install pandas
pip install ipython[all]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment