Install Theano for Windows, Python 3, 64bit

Is there a manual installation procedure for Theano for Python 3.4 64bit on Windows 7 without using any packages?

+5
source share
3 answers

I wrote a walkthrough on this subject today: http://www.islandman93.com/2015/04/tutorial-python-34-theano-and-windows-7.html

Some features of my post:

As user2805751 said, you will need LibPython, Numpy and Scipy.

You will also need: MinGW http://mingw-w64.yaxm.org/doku.php/download

Installing Theano with installing python setup.py will automatically do a 2to3 conversion.

+2
source

If the above PR does not work, I was able to get the following work for Windows 8.1 64 bit (python 2.7.8, but you can try 3.4)

http://pavel.surmenok.com/2014/05/31/installing-theano-with-gpu-on-windows-64-bit/

I also needed to install the LibPython package from http://www.lfd.uci.edu/~gohlke/pythonlibs/#libpython to fix the ld linker problem.

+1
source

There is no such instruction. There is a new PR with an instruction that does not use any packages, but for python2. You can try, but change python2 to python3:

https://github.com/Theano/Theano/pull/2155

0
source

Source: https://habr.com/ru/post/1208328/


All Articles