01 Windows安装Tensorflow

Posted tengge

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了01 Windows安装Tensorflow相关的知识,希望对你有一定的参考价值。

1、安装Python。

    点击此处下载Python3.5.2。安装Python时一定要选择安装pip。

2、配置Python环境变量。

    将%安装路径%\Scripts添加到Path下面。

3、修改Pip国内源。

    在C:\Users\l{你的用户名}\AppData\Local下面创建pip文件夹,在pip文件夹中新建pip.conf文件,写入以下内容。

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com  

 

4、安装Tensorflow。

    打开PowerShell,执行以下代码。

pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc1-cp35-cp35m-win_amd64.whl

5、测试安装。

    打开Python IDLE,输入import tensorflow as tf,运行。如果不报错,证明安装成功。

 

6、参考资料。

    原生Windows安装Tensorflow0.12的方法:http://blog.csdn.net/include1224/article/details/53452824

 

注意事项:

1、使用参考资料中的包安装的Tensorflow,其中的TensorBoard,在Windows下无法正常显示,这是由于缺少资源包的原因。详情请见:https://github.com/tensorflow/tensorflow/issues/5983。官方给出的解决方案是在新版本出来以前,使用http://ci.tensorflow.org/view/Nightly/job/nightly-win/的版本安装。rc0和rc1都存在这个问题。

以上是关于01 Windows安装Tensorflow的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Windows 上的 Python 2.7 上安装 Tensorflow?

Tensorflow-gpu在windows10上的安装(anaconda)

Windows 下 Python 3.6 下安装 TensorFlow (屡败屡战)

URL fetch failure on https://storage.googleapis.com/tensorflow/tf-keras-datasets/mnist.npz: None(代码片

windows10安装tensorflow CPU版本

tensorflow安装过程-(windows环境下)---详解