Skip to content

Instantly share code, notes, and snippets.

@matehat
Forked from mja/homebrew_scipy.sh
Created April 18, 2011 13:47
Show Gist options
  • Save matehat/925363 to your computer and use it in GitHub Desktop.
Save matehat/925363 to your computer and use it in GitHub Desktop.
Install every dependency to make NeuroLab work properly
echo "Installing core packages"
brew install gfortran
brew install python
brew install distribute
brew install mongodb
brew install hdf5
brew install ghostscript
brew install git
echo "Installing custom python libraries"
easy_install pip
pip install ipython
pip install numpy
pip install scipy
pip install pymongo
pip install django
pip install gunicorn
pip install h5py
pip install numexpr
echo "Installing custom python library versions"
pip install -f http://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.0/matplotlib-1.0.0.tar.gz
pip install https://github.com/theojulienne/mongoengine/tarball/master
echo "Pulling project from GitHub"
git clone git://github.com/matehat/python-neurolab.git NeuroLab
cd NeuroLab
mkdir db
mkdir log
echo "\n\nNow you should set up services to run in the background (on Mac OS X):"
echo "\$ bin/services -li {httpd, db, workers}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment