我已经通过pip3 install命令安装了TensorFlow,然后我尝试编译一个简单的程序来检查它是否有效:
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> print(sess.run(hello))
并返回它
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
我在互联网上读到我必须使用avx2指令重新编译它,但我并没有理解该怎么做。