Skip to content

Instantly share code, notes, and snippets.

@jacobian
Created September 18, 2011 16:03
Show Gist options
  • Save jacobian/1225209 to your computer and use it in GitHub Desktop.
Save jacobian/1225209 to your computer and use it in GitHub Desktop.
Pre-reqs for Strange Loop Machine Learning workshop - Mac + homebrew + virtualenv
brew install gfortran
mkvirtualenv --no-site-packages stl-mlearning
pip install pyyaml
pip install numpy
pip install scipy
wget http://nltk.googlecode.com/files/nltk-2.0.1rc1.zip
unzip http://nltk.googlecode.com/files/nltk-2.0.1rc1.zip
cd nltk
python setup.py install
@zyegfryed
Copy link

FWIW
- unzip http://nltk.googlecode.com/files/nltk-2.0.1rc1.zip
+ unzip nltk-2.0.1rc1.zip
;)

@brainsik
Copy link

If you don't have virtualenv installed, this is a one-liner to get it + virtualenvwrapper going:

curl -s https://raw.github.com/brainsik/virtualenv-burrito/master/virtualenv-burrito.sh | bash

https://github.com/brainsik/virtualenv-burrito#readme

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