Skip to content

Instantly share code, notes, and snippets.

@bertomartin
Forked from dacamo76/README.md
Created May 2, 2016 21:05
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 bertomartin/777571caa021f382c1c8cce97cfb9981 to your computer and use it in GitHub Desktop.
Save bertomartin/777571caa021f382c1c8cce97cfb9981 to your computer and use it in GitHub Desktop.
Installing scikit-learn on Amazon Linux AMI on EC2

To install scikit-learn easily run the following command.

curl https://gist.githubusercontent.com/dacamo76/4780765/raw/c3779996d8f6b13caaaa48d33aa1585684c7f8e6/scikit-learn-install.sh | sh

Please look over the shell file being run to make sure no evil is done to your machine.

sudo yum -y install gcc-c++ python27-devel atlas-sse3-devel lapack-devel
wget https://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.11.6.tar.gz
tar xzf virtualenv-1.11.6.tar.gz
python27 virtualenv-1.11.6/virtualenv.py sk-learn
. sk-learn/bin/activate
pip install numpy
pip install scipy
pip install scikit-learn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment