Skip to content

Instantly share code, notes, and snippets.

@mamrehn
Forked from Reddine/install.sh
Created March 27, 2017 11:01
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 mamrehn/2010e8f8beacd7e291d34dca8e488d1d to your computer and use it in GitHub Desktop.
Save mamrehn/2010e8f8beacd7e291d34dca8e488d1d to your computer and use it in GitHub Desktop.
Install Theano on Ubuntu 14.04
sudo apt-get install build-essential
sudo apt-get update
# BLAS → LAPACK → ATLAS → numpy → scipy → Theano
# remove numpy and scipy
sudo apt-get remove python-numpy
sudo apt-get remove python-scipy
# Instalation commands
sudo apt-get install gfortran
sudo apt-get install libopenblas-dev
sudo apt-get install liblapack-dev
sudo apt-get install libatlas-base-dev
# Numpy
sudo pip install numpy
# Scipy
sudo pip install scipy
# Theano dep
sudo apt-get install python-dev
sudo apt-get install python-pip
sudo apt-get install python-nose
sudo apt-get install g++
sudo apt-get install git
# Thano
sudo pip install Theano
@mamrehn
Copy link
Author

mamrehn commented Mar 27, 2017

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