尝试在Ubuntu上安装TensorFlow

在Ubuntu上安装TensorFlow主要参考官方的手册就行,请参见在Ubuntu上安装TensorFlow。

本次安装TensorFlow用到的Ubuntu是基于虚拟机安装的Ubuntu 18.04 LTS,并且安装的是仅支持CPU的TensorFlow,采用Virtualenv安装方式

本次安装没有遇到任何问题,不过在验证阶段运行一个简短的TensorFlow程序时提示类似Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 的警告,后来通过Google在Stack Overflow上找到了答案(https://stackoverflow.com/a/47227886/5196190),之所以出现这个问题是因为pip安装的TensorFlow发布考虑到了普遍硬件的情况,要想使安装的TensorFlow使用自己cpu支持的指令集,需要从源码进行安装。

你可能感兴趣的:(机器学习)