How do I install theano in Anaconda ver. 2.1 Windows 64 bit for Python 3.4?

前端 未结 3 1893
一整个雨季
一整个雨季 2020-11-28 16:20

I\'ve installed Anaconda. Now I want to install the Theano library in Anaconda. I have tried:

  1. The Theano installer for Anaconda from http://deeplearning.net

3条回答
  •  清酒与你
    2020-11-28 17:18

    Running Theano on Python 3.4 is complicated. So far I would recommend that you run Theano in Python 2.7. The libraries written for Theano are Python 2.6+ based. So in order to get Theano running in Python 3.4, you would be needing the 2to3 automated python 2 to 3 code translation tool. I haven't tested Theano using 2to3, so I can't comment on whether it would work or not. But, I am using Python 2.7 and Theano works smoothly. Also, you might want to use AnacondaCE with Python 2.7 installer which pretty much gives you everything you need to start developing.

    You would also need to reinstall Theano using

    pip install Theano
    

提交回复
热议问题