Installing Theano on Windows - DLL load failed

后端 未结 5 1645
栀梦
栀梦 2021-01-02 22:39

I am trying to install Theano on Windwos 8

Have followed these steps.

I try to test using:

import numpy as np
import time
import theano

prin         


        
5条回答
  •  悲哀的现实
    2021-01-02 23:03

    This may be a little bit late. I followed the exact same guide as you, and ran into the same error.

    Turns out that it can be fixed by adding the openblas directory to system path. In your example, add "E:\Things_Installed_Here\Theano\openblas" to system path variable.

    Note that depending on where you put the DLL files, you either need to add "E:\Things_Installed_Here\Theano\openblas" or "E:\Things_Installed_Here\Theano\openblas\bin".

    Windows 10 64 bit, Python 3.5.1 (Anaconda 2.5), Theano 0.8.2.

    For those who need it, I am able to install Theano in Windows 10 thanks to these three guides guide1, guide2 and the guide attached by OP.

提交回复
热议问题