简体   繁体   中英

problems in importing theano

I am running python on windows but when I import theano, I come across this problem:

import theano

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.

This isn't a problem , it's a WARNING as it very clearly says. It just means that you don't have g++ installed on your system and theano won't be able to apply optimizations.

To remove this, just install g++ or do as it very clearly says:

To remove this warning, set Theano flags cxx to an empty string.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM