我的环境是Win 10,安装了anaconda、pycharm。
工作需要用Theano,刚用的时候出了些问题,缺少g++。
问题1:
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.
解决方法:
在Anaconda Prompt中输入并运行 conda install mingw libpython。
安装速度:
几分钟
问题2,之后会出现:
WARNING (theano.configdefaults): g++ not available, if using conda: `conda install m2w64-toolchain`
解决方法:
在Anaconda Prompt中输入并运行 conda install m2w64-toolchain。
安装速度:
至少半小时
网友评论