Install Theano Python Library
In this tutorial, we shall learn to install Theano Python Library in Ubuntu.
Prerequisites
We shall use Anaconda distribution of Python for developing Deep Learning Applications with Theano.
Install Theano
To install Theano we shall use pip installer. Open a terminal and run the following command.
$ pip install theanoConsole/Terminal Output
~$ pip install theano
Collecting theano
  Downloading Theano-1.0.1.tar.gz (2.8MB)
    100% |????????????????????????????????| 2.8MB 224kB/s 
Requirement already satisfied: numpy>=1.9.1 in ./lib/python3.6/site-packages (from theano)
Collecting scipy>=0.14 (from theano)
  Downloading scipy-1.0.0-cp27-cp27mu-manylinux1_x86_64.whl (46.7MB)
    100% |????????????????????????????????| 46.7MB 19kB/s 
Requirement already satisfied: six>=1.9.0 in ./lib/python3.6/site-packages (from theano)
Installing collected packages: scipy, theano
  Running setup.py install for theano ... done
Successfully installed scipy-1.0.0 theano-1.0.1
Conclusion
Theano Python Library is successfully installed.
