Chris
Chris

Reputation: 31284

Integrating Theano Installation with Anaconda install

I installed Theano according to the instructions on the website:

  1. clone the git
  2. run the command python setup.py develop
  3. ...

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.

Upvotes: 2

Views: 796

Answers (1)

Mike Müller
Mike Müller

Reputation: 85622

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.

Upvotes: 1

Related Questions