I wonder how to install Theano on Anaconda Python 2.7 x64 on Windows 7 x64. The Theano website provides some instructions but is not clear as to what is specific to Anaconda.
I'm not 100% certain but this may be a minimal set of instructions, but only if you don't want to use a GPU. Getting Theano to use a GPU on Windows is quite a bit more difficult.
conda update conda
.conda update --all
.conda install mingw libpython
.pip install Theano
.pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git
(see linked documentation for more options)If you want multithreading support via OpenMP then things get more complicated.
If you want GPU support things get much more complicated.
The Windows installation instructions in the Theano documentation are fragmented at best, and terribly out of date at worst. If you need more than the basics working on Windows, you'll need to pick your way through to find an approach that works for you.