ubuntu下 tensorflow 升级到 新版本 0.12版本

来源:互联网 发布:用js写的小游戏源代码 编辑:程序博客网 时间:2024/06/08 19:53

终端或命令行下输入:

 sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.1-cp27-none-linux_x86_64.whl

查看版本:

终端或命令行下输入:

 python

然后输入:

import tensorflow as tftf.__version__

结果返回:

 ‘0.12.1’


参考博文:

http://blog.csdn.net/scotfield_msn/article/details/60333117

0 0