I am trying to install Theano on Windwos 8
Have followed these steps.
I try to test using:
import numpy as np
import time
import theano
prin
I was struggling with getting theano to work on Windows 10 x64 as well, and after reading several help guides, what worked for me in the end was the following:
conda install mingw libpython
pip install theano
Put the following in .theanorc.txt:
[global]
floatX = float32
device = cpu
[blas]
ldflags = -LC:\\openblas\\bin -LC:\\openblas\\lib -lopenblas
Hope this helps someone.