I installed theano with Spyder 2.3.8
on Windows 7 64-bit
by running pip install theano
. It worked well. But then, when I tried to run import theano
, I got the following error:
Traceback (most recent call last): File "", line 1, in import theano File "D:\Anaconda3\lib\site-packages\theano\__init__.py", line 55, in from theano.compile import \ File "D:\Anaconda3\lib\site-packages\theano\compile\__init__.py", line 9, in from theano.compile.function_module import * File "D:\Anaconda3\lib\site-packages\theano\compile\function_module.py", line 18, in import theano.compile.mode File "D:\Anaconda3\lib\site-packages\theano\compile\mode.py", line 11, in import theano.gof.vm File "D:\Anaconda3\lib\site-packages\theano\gof\vm.py", line 25, in in_c_key=False) File "D:\Anaconda3\lib\site-packages\theano\configparser.py", line 231, in AddConfigVar configparam.fullname) AttributeError: ('This name is already taken', 'profile')
What does that mean?