博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu install TensorFlow
阅读量:5955 次
发布时间:2019-06-19

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

/******************************************************************************** *                      Ubuntu install TensorFlow * 说明: *     TensorFlow Lite好像不久就会发布,尝试一下TensorFlow安装。 * *                                              2017-11-22 深圳 龙华樟坑村 曾剑锋 *******************************************************************************/一、参考文档:    1. 在 Ubuntu 上安装 TensorFlow        https://efeiefei.gitbooks.io/tensorflow_documents_zh/install/install_linux.html     2. Tensorflow教程         https://morvanzhou.github.io/tutorials/machine-learning/tensorflow/ 二、Install:    1. sudo apt-get install python3-pip python3-dev    2. pip3 install tensorflow三、测试:    zengjf@zengjf:~/zengjf/zengjfos/freeopcua$ python3     Python 3.5.2+ (default, Sep 22 2016, 12:18:14)     [GCC 6.2.0 20160927] on linux    Type "help", "copyright", "credits" or "license" for more information.    >>> import tensorflow as tf    >>> hello = tf.constant('Hello, TensorFlow!')    >>> sess = tf.Session()    2017-11-22 12:10:18.932106: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA    >>> print(sess.run(hello))    b'Hello, TensorFlow!'    >>>

 

转载于:https://www.cnblogs.com/zengjfgit/p/7878634.html

你可能感兴趣的文章
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>
JFreeChart开发_用JFreeChart增强JSP报表的用户体验
查看>>
度量时间差
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>
3.1
查看>>
校验表单如何摆脱 if else ?
查看>>
<气场>读书笔记
查看>>
web安全问题分析与防御总结
查看>>
Centos下基于Hadoop安装Spark(分布式)
查看>>
3D地图的定时高亮和点击事件(基于echarts)
查看>>
mysql开启binlog
查看>>
设置Eclipse编码方式
查看>>
分布式系统唯一ID生成方案汇总【转】
查看>>
并查集hdu1232
查看>>
Mysql 监视工具
查看>>
从前后端分离到GraphQL,携程如何用Node实现?\n
查看>>
Linux Namespace系列(09):利用Namespace创建一个简单可用的容器
查看>>