码迷,mamicode.com
首页 > Windows程序 > 详细

Windows64位安装GPU版TensorFlow 0.12,Power Shell下输入:安装Tensorflow的全教程

时间:2017-06-01 20:06:13      阅读:730      评论:0      收藏:0      [点我收藏+]

标签:from   大神   国内   tps   please   linux   rsh   1.0   通过   

  1. 推荐使用powershell,只需要在cmd指令窗口输入powershell即可
  2. 下载64位Python3.5(一定要3.5!!)可以通过Python 3.5 from python.org 或 Python 3.5 from Anaconda 下载并安装Python3.5.2(注意选择正确的操作系统)。
  3. 具体教程可以查看Python3.5.2百度经验安装,里面有个细节,自动设置环境变量,不能忘
  4. 安装VS2015,如果是2013的后面要加个插件,这是后话
  5. 为了使用国内镜像加速pip安装,需要如下修改:

    WIndows 7 在“C:\Users\用户名\AppData\Local\pip”文件夹下,新建文本文件,添加内容:

  6. 关于镜像参考http://www.cnblogs.com/microman/p/6107879.html
  7. 安装CPU版TensorFlow 0.12,Power Shell下输入:pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl
  8. 安装GPU版TensorFlow 0.12,Power Shell下输入:pip install --upgrade https://storage.googleapis.com/tensorflow/windows/gpu/tensorflow_gpu-0.12.0rc0-cp35-cp35m-win_amd64.whl  
  9. 装完后发现还是有问题:比如

    import tensorflow as tf 

    报错为:

    Error importing tensorflow.  Unless you are using bazel,

    you should not try to import tensorflow from its source directory;
    please exit the tensorflow source tree, and relaunch your python interpreter

    from there.(这是因为装了VS2013原因,要是直接2015应该没事,所以要加补丁)

  10. 解决方案:.进入https://www.tensorflow.org/versions/r0.12/get_started/os_setup.html#pip-installation-on-windows,点击技术分享下载vc_redist.x64.exe
  11. 安装vc_redist.x64.exe,安装时会出现 “正在处理 windon_msu_x64”时,是因为window缺少补丁,下载地址为:http://pan.baidu.com/s/1nvpsXVN

    完毕 可以运行了

  12. 然后基本就可以用了>>>import tensorflow as tf  
  13. 但是楼主在使用时发现Tensorflow的强大可视化工具Tensorboard无法用
  14. 找了很久原因,终于在简书中找到一大神的说法,http://www.jianshu.com/p/4b92b19c97e2,原因就是版本的问题,对于Linux系统无论TensorFlow是0.12还是1.0都能很好的使用tensorboard;但是对于Windows系统,0.12是无法显示的,1.0版本的TensorFlow是能显示的,这个需要注意。
  15. 于是开始更新0.12版本到1.0,命令很简单,还是powershell,pip3 install --upgrade tensorflow,具体链接见http://blog.csdn.net/u010099080/article/details/55260055

Windows64位安装GPU版TensorFlow 0.12,Power Shell下输入:安装Tensorflow的全教程

标签:from   大神   国内   tps   please   linux   rsh   1.0   通过   

原文地址:http://www.cnblogs.com/xlqtlhx/p/6930496.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!