0

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.

Giulio Caccin
  • 2,962
  • 6
  • 36
  • 57

1 Answers1

0

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.

Abdul Fatir
  • 6,159
  • 5
  • 31
  • 58