>>> import numpy # OK!
>>> import scipy # OK!
>>> import theano # warning
WARNING (theano.tensor.blas): Failed to import scipy.linalg.blas, and Theano
flag blas.ldflags is empty. Falling back on slower implementations for
dot(matrix, vector), dot(vector, matrix) and dot(vector, vector) (DLL load
failed: Belirtilen modül bulunamadı.)
>>> 导入theano时,python会发出此警告。我根据这个链接设置了提亚诺。windows.html
Numpy和Scipy的进口是可以的。但我被布拉斯困住了?
我从github克隆到我的计算机OpenBLAS。如何将blas添加到环境变量( "path“)中?
发布于 2017-02-25 04:08:55
显然您有来自scipy.linalg.blas的错误,请尝试安装软件包,请确保您已经安装了
numpy+mkl
你可以在http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy上找到它
您提到的另一个问题是,没有检测到g++编译器,theano需要g++ (Linux和g++)来编译生成的C代码。(只要谷歌深入了解theano设置可能会有帮助)。
安装MinGW的教程部分:
sh /postinstall/pi.sh,您刚刚安装的方向MinGW应该是C:/Program/mingw-w64/mingw64(取决于安装方向)https://stackoverflow.com/questions/33498836
复制相似问题