I installed Theano according to the instructions on the website:
python setup.py develop
I am using Pycharm with an Anaconda installation as my interpreter. How do I integrate my new Theano installation with my Anaconda interpreter and make it part of the "Anaconda environment"? (Theano is in C:\Theano
, Anaconda is in C:\...\Users\me\anaconda3\etc...
)
My Theano installation actually shows up in my Pycharm -> Settings -> Interpreter window (location: C:\Theano
) But when I reference it in code, it is not recognized.
You can to install Theano with conda
:
conda install -c https://conda.anaconda.org/ideas theano
This gives you 0.7 for Windows 64. It should work with Anaconda.