博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows下Anaconda3配置TensorFlow深度学习库
阅读量:5112 次
发布时间:2019-06-13

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

Anaconda3(python3.6)安装tensorflow

Anaconda3中安装tensorflow3是非常简单的,仅需通过

pip install tensorflow

测试代码:

import tensorflow as tf>>> hello =tf.constant("Hello TensorFlow~")>>> soss=tf.Session()>>> print(soss.run(hello))b'Hello TensorFlow~'>>> a=tf.constant(10)>>> b=tf.constant(32) >>> print(soss.run(a+b)) #輸出42

 

下面文章是之前在Anaconda3中配置Tensorflow库的过程

Anaconda3(python3.5)配置TensorFlow深度学习库

前言:目前Google已经发布了TensorFlow的Windows版本,只支持64位Python3.5,我们使用Anaconda3配置使用。

1.下载Anaconda3并打开Anaconda Navigator

    URL:https://www.continuum.io/downloads

    

2.新建TensorFlow环境

   

3.打开TensorFlow终端

   

  并输入以下命令  

pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl

  在PC联网的情况下下载依赖包,如下图最后会出现成功提示  

  

4. 安装成功环境测试

   测试代码如下:(官网给的是单引号,需要改为双引号)

python -c "import os; import inspect; import tensorflow; print(os.path.dirname(inspect.getfile(tensorflow)))"

  显示如下:

  

5.案例测试

  输入Python在3.5.2的环境下做测试

  

  测试代码示例:  

import tensorflow as tf>>> hello =tf.constant("Hello TensorFlow~")>>> soss=tf.Session()>>> print(soss.run(hello))b'Hello TensorFlow~'>>> a=tf.constant(10)>>> b=tf.constant(32)>>> print(soss.run(a+b))  #輸出42

 

转载于:https://www.cnblogs.com/jackchen-Net/p/6681269.html

你可能感兴趣的文章
struts.convention.classes.reload配置为true,tomcat启动报错
查看>>
MySQL的并行复制多线程复制MTS(Multi-Threaded Slaves)
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
PyQt5--EventSender
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
Java 多态 虚方法
查看>>
Unity之fragment shader中如何获得视口空间中的坐标
查看>>
万能的SQLHelper帮助类
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
Html5 离线页面缓存
查看>>
《绿色·精简·性感·迷你版》易语言,小到不可想象
查看>>
Android打包key密码丢失找回
查看>>
VC6.0调试技巧(一)(转)
查看>>
类库与框架,强类型与弱类型的闲聊
查看>>
webView添加头视图
查看>>
php match_model的简单使用
查看>>
在NT中直接访问物理内存
查看>>
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>