解决import theano的错误

安装好theano,在控制台下通过python     import theano会报错:

g++ not available, if using conda: `conda install m2w64-toolchain`

WARNING (theano.configdefaults): g++ not detected ! Theano will be unable to execute optimized C-implementations (for both CPU and GPU) and will default to Python implementations. Performance will be severely degraded. To remove this warning, set Theano flags cxx to an empty string.


经过尝试,可以通过conda install mingw libpython解决问题,如果在安装mingw出现问题,参考博客:http://blog.csdn.net/fang1192801693/article/details/73810714

你可能感兴趣的:(解决import theano的错误)