当前位置:  开发笔记 > 编程语言 > 正文

如何从源更新Tensorflow

如何解决《如何从源更新Tensorflow》经验,为你挑选了1个好方法。

Tensorflow 0.5.0通过git clone从源代码安装了最新的.并希望更新到Tensorflow 0.6.0

git pull
./configure
bazel build -c opt --config=cuda //tensorflow/cc:tutorials_example_trainer

但目录中的Tensorflow库/usr/lib/python2.7/site-packages仍然具有0.5.0版本

结果中的版本"pip show tensorflow"也是0.5.0



1> mrry..:

要从源安装TensorFlow库,您需要构建PIP包并进行安装.步骤如下:

$ git pull
$ ./configure

$ bazel build -c opt //tensorflow/tools/pip_package:build_pip_package
# ...or, with GPU support
$ bazel build -c opt --config=cuda //tensorflow/tools/pip_package:build_pip_package

$ bazel-bin/tensorflow/tools/pip_package/build_pip_package /tmp/tensorflow_pkg

# The name of the .whl file will depend on your platform.
$ pip install /tmp/tensorflow_pkg/tensorflow-0.6.0-cp27-none-linux_x86_64.whl

推荐阅读
雨天是最美
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有