博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Windows上安装Tensorflow
阅读量:5871 次
发布时间:2019-06-19

本文共 1559 字,大约阅读时间需要 5 分钟。

hot3.png

1,TensorFlow只支持64位平台
2,下载python 3.5.X (必须是64位的),地址如下:
https://www.python.org/ftp/python/3.5.2/python-3.5.2-amd64.exehttps://www.python.org/ftp/python/3.5.2/python-3.5.2-embed-amd64.zip
3,安装python,并验证python和pip
C:\Users\Administrator>python -VPython 3.5.2C:\Users\Administrator>pip3 -Vpip3 8.1.1 from d:\program files\python35\lib\site-packages (python 3.5)
4,安装TensorFlow(only cpu)
pip3 install --upgrade tensorflow
5,TensorFlow的hello world
C:\Users\Administrator>pythonPython 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:18:55) [MSC v.1900 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license" for more information.>>> import tensorflow as tf>>> hello = tf.constant('Hello tensorflow1')>>> session = tf.Session()>>> print(session.run(hello))b'Hello tensorflow1'看到输出b'Hello tensorflow1'即证明TensorFlow环境安装完成.
6,如果你是java开发的话,可能想尝试下java API,结果很让人失望,太慢了,世界末日了,代码如下,自己去享受一把:
public String tf() throws Exception{    final String value = "Hello tensorflow version :  "  + TensorFlow.version();    System.out.println(value);    //将数据转为tensor    Tensor tensor = Tensor.create(value.getBytes("UTF-8"));    //构造一个图对象    Graph graph = new Graph();    graph.opBuilder("Const","myConst").setAttr("dtype",tensor.dataType())            .setAttr("value",tensor).build();    //创建一个Session    Session session = new Session(graph);    graph.close();    //计算输出结果    Tensor result = session.runner().fetch("myConst").run().get(0);    System.out.println(result);    return new String(result.bytesValue(),"UTF-8");}

转载于:https://my.oschina.net/liuchangng/blog/1456688

你可能感兴趣的文章
MacBook如何用Parallels Desktop安装windows7/8
查看>>
gitlab 完整部署实例
查看>>
GNS关于IPS&ASA&PIX&Junos的配置
查看>>
七天学会ASP.NET MVC (四)——用户授权认证问题
查看>>
upgrade to iOS7,how to remove stroyboard?
查看>>
影响企业信息化成败的几点因素
查看>>
Thinkphp5 模型里别名alias不生效bug【已解决】
查看>>
SCCM 2016 配置管理系列(Part8)
查看>>
zabbix监控部署
查看>>
关于Tomcat下项目中文名在Windows和Linux下编码混乱问题解决
查看>>
struts中的xwork源码下载地址
查看>>
Android硬件抽象层(HAL)深入剖析(二)
查看>>
记录一些有用的代码技巧,不定期更新
查看>>
Centos 安装后不能上网 解决备忘
查看>>
cisco 交换机链路聚合
查看>>
[AX]AX2012 Form开发概览
查看>>
用几何画板画垂线的方法
查看>>
《构建之法》之第四章读后感
查看>>
C++对象模型
查看>>
第九章 Python之面向对象
查看>>