本文主要是介绍tensorflow | Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
报错:
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
解决:
1.重新安装python3.7.2
2.打开 https://github.com/fo40225/tensorflow-windows-wheel 在里面找到对应的.whl文件 报错提示缺什么就安装什么
tips:
1.tensorflow需要安装 python 64-bit,刚开始我不知道自己安装是32位的,折腾了一天
2.好多博客写的忽视报错的代码 os.environ[“TF_CPP_MIN_LOG_LEVEL”]=‘2’ 并不能彻底解决问题 最好还是安装符合自己版本的 .whl 文件
参考:
https://blog.csdn.net/wlwlomo/article/details/82806118
https://stackoverflow.com/questions/41293077/how-to-compile-tensorflow-with-sse4-2-and-avx-instructions?rq=1
这篇关于tensorflow | Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!