I am trying to install Theano on my Windows 7 x64 machine. I have followed about 5 different tutorials trying to get it installed properly. Some of them are in these links:
http://deeplearning.net/software/theano/install_windows.html
On the Kaggle site I tried the Anaconda and WinPython recommendations... I've tried using Python 2.7 and 3.5... it doesn't seem to matter what I do; I keep getting the following error(s) when I run
import theano
in my python environment:
...
^~~~~;mingw-w64/x86_64-6.2.0-posix-seh-rt_v5-rev1/mingw64/lib/gcc/x86_64-w64-mingw32/6.2.0/include/c++/cmath:1133:11: error: '::hypot' has not been declared\mod.cpp:1:/c++/math.h:36:0,
That's what I get the first time I try to import theano. If I try a second time in the same session I get
...
from theano import config, gof
ImportError: cannot import name gof
I found this other question on stackoverflow that makes it seem that I have an old version of Theano installed causing the problem. I already ran
pip uninstall theano
and it is no longer installed. Is there another way to uninstall it that I'm missing? Or do I have another issue?