Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2

I have recently installed tensorflow (Windows CPU version) and received the following message: Successfully installed tensorflow-1.4.0 tensorflow-tensorboard-0.4.0rc2 Then when I tried to run import tensorflow as tf hello = tf.constant(‘Hello, TensorFlow!’) sess = tf.Session() sess.run(hello) ‘Hello, TensorFlow!’ a = tf.constant(10) b = tf.constant(32) sess.run(a + b) 42 sess.close() (which I found through https://github.com/tensorflow/tensorflow) I received … Read more