-
-
Save toluwajosh/57407d529520279a394b20a32a4d059c to your computer and use it in GitHub Desktop.
Install Theano on Ubuntu 14.04
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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment