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

windows环境安装tensorflow

时间:2017-07-30 19:00:12      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:技术分享   nat   font   pretty   world   div   www   class   方法   

本机环境win7,想要安装tensorflow,试了好久,才装好。官网才是王道。

注意:目前tensorflow 在 windows 环境中仅支持 python 3.5. *64,。所以python版本一定要下对。

我采用的方法是

Installing with native pip,使用 CPU 版本。

下面是分享的python 链接 http://pan.baidu.com/s/1qXGlYdI

后面的命令就参照官网https://www.tensorflow.org/install/install_windows

C:\> pip3 install --upgrade tensorflow

 

装好以后进行测试

$ python

Enter the following short program inside the python interactive shell:

 
>>> import tensorflow as tf
>>> hello = tf.constant(‘Hello, TensorFlow!‘)
>>> sess = tf.Session()
>>> print(sess.run(hello))

If the system outputs the following, then you are ready to begin writing TensorFlow programs:

 
Hello, TensorFlow!

配置PyCharm

习惯了使用JetBrain系列开发工具,于是选用PyCharm来开发,配置如下: 
新建工程后在Setting–Project Interpreter选择tensorflow下的Python解释器,例如我的解释器位置: 
技术分享 
等部署完后便可跑个HelloWorld了

 

 2 配置文件编码

 

windows环境安装tensorflow

标签:技术分享   nat   font   pretty   world   div   www   class   方法   

原文地址:http://www.cnblogs.com/zhaopengcheng/p/7259968.html

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