WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions.

安装thenao时出现WARNING (theano.tensor.blas): Using NumPy C-API based implementation for BLAS functions.应该怎么解决

1.使用cmd安装类库

conda install mkl
conda install mkl-servic
conda install blas

2.在如下位置添加配置文件.theanorc.txt

位置:C:\Users\sml(具体是自己的用户名)

注意:文件名的前边有一个点
在新建的配置文件中添加如下内容

[blas]
ldflags=-lblas
或着
[blas]
ldflags=-lmkl_rt 



猜你喜欢

转载自blog.csdn.net/qq_33626989/article/details/81811297