[关闭]
@CrazyHenry 2018-01-20T22:10:59.000000Z 字数 914 阅读 1352

记录Ubuntu16.04环境下pip安装Tensorflow

dldlTensorflow


1.熟悉python的包管理机制

这个我以前已经写过相关文档了。默认使用pip命令的时候:

因此,如果同时安装了pip2和pip3,则最好指明使用的pip命令。

2.安装Tensorflow

  1. $ sudo pip2 install tensorflow # Python 2.7; CPU support (no GPU support)
  2. $ sudo pip3 install tensorflow # Python 3.n; CPU support (no GPU support)
  3. $ sudo pip2 install tensorflow-gpu # Python 2.7; GPU support
  4. $ sudo pip3 install tensorflow-gpu # Python 3.n; GPU support

3.测试

  1. # Python2.7或者python3.5
  2. import tensorflow as tf
  3. hello = tf.constant('Hello, TensorFlow!')
  4. sess = tf.Session()
  5. print(sess.run(hello))

sess = tf.Session()之后会出现这种提示:

  1. 2018-01-19 18:11:51.114696: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
  2. //其实这不是错误,只是一个提示,表示用源码编译会更快
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注