Created
August 22, 2014 16:44
-
-
Save AntoineAugusti/7092362f828dfd48a629 to your computer and use it in GitHub Desktop.
Script to install useful ML tools on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install gfortran libopenblas-dev liblapack-dev python-dev libfreetype6-dev libxft-dev libjpeg-dev libpng-dev | |
wget https://bootstrap.pypa.io/get-pip.py | |
python get-pyp.py | |
pip install numpy | |
pip install pillow | |
pip install scipy | |
pip install matplotlib | |
pip install scikit-learn | |
pip install stemming |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment