美文网首页Python 运维我爱编程
windows 下用Anaconda安装TensorFlow

windows 下用Anaconda安装TensorFlow

作者: a十二_4765 | 来源:发表于2017-09-27 13:25 被阅读566次

    1. 安装python 这里采用py3.5  64位 python3.5 64 下载  安装完成后配置环境变量

    我的电脑->鼠标右键->属性->高级系统设置->环境变量 

    点击环境变量 在系统变量里找到 变量名为 Path  在变量值里填上你python 存放路径 我这存放在C盘 C:\Python35\Scripts\; C:\Python35\; 然后启动命令行 win+r 里面输入cmd 在弹出的黑框中输入 python  如下就表示安装成功

    下载Anaconda  点击这里 

    安装完成后

    点击 Anaconda Prompt  打开后输入

    conda config --addchannels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

    conda config --addchannels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

    同样在Anaconda Prompt中利用Anaconda创建一个python3.5的环境,环境名称为tensorflow ,输入下面命令:

    conda create -n tensorflow python=3.5

    运行开始菜单->Anaconda3—>Anaconda Navigator,点击左侧的Environments,可以看到tensorflow的环境已经创建好了。

    在Anaconda Prompt中启动tensorflow环境


    安装cpu版本的TensorFlow

    pip install--upgrade--ignore-installed tensorflow

    测试tensorflow

    输入 imprt tensorflow as tf  

    这样就安装成功了

    或者直接安装

    windows 安装tensorflow

    pip install --upgrade tensorflow

    Windows 运行 Tensorflow 如果遇到这个报错:

    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.

    安装 :https://www.visualstudio.com/zh-hans/downloads/?rr=https%3A%2F%2Fmorvanzhou.github.io%2Ftutorials%2Fmachine-learning%2Ftensorflow%2F1-2-install%2F

    或者在 Windows 运行的时候出现了如下报错, 你需要安装Windows 的 Visual C++ Redistributable for Visual Studio 2015就能成功解决问题.

    https://www.microsoft.com/en-us/download/confirmation.aspx?id=48145

    相关文章

      网友评论

        本文标题:windows 下用Anaconda安装TensorFlow

        本文链接:https://www.haomeiwen.com/subject/lbhuextx.html