I use the introduction in the deeplearning tutorials.
sudo apt-get install python-numpy python-scipy python-dev python-pip python-nose g++ libopenblas-dev git
sudo pip install Theano
There is no problem with numpy and scipy.test:
python -c "import numpy; numpy.test()"
python -c "import scipy; scipy.test()"
but when i use the the theano test:
python -c "import theano; theano.test()"
It told me "no module named theano" which confused me a lot.
theano
doesn't seem to be in the search path of your Python installation. Check outsys.path
and verify that the module is located in one of the listed locations. – Clearheaded