【Tensorflow】Windows下基于Anaconda的Tensorflow环境配置

详细步骤见TensorFlow 安装教程

1. Anaconda (Anaconda3-4.2.0-Windows-x86_64.exe[python版本3.5.2])下载安装:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

版本为:Anaconda3,for windows,64bit(tensorflow在windows下只支持Python 3.5以上、amd64)

2. Anaconda使用:打开“开始目录”,找到Anaconda/Anaconda prompt,以管理员权限运行,否则会出现permission denied。

建立名为tensorflow的conda计算环境(一定要是python3.5.2,py3.5.1与py3.6安装会报出找不到tensorflow资源的错误

[plain]  view plain  copy
 print ? 在CODE上查看代码片 派生到我的代码片
  1. conda create -n tensorflow python=3.5.2  
激活tensorflow环境
[plain]  view plain  copy
 print ? 在CODE上查看代码片 派生到我的代码片
  1. activate tensorflow  

输入python --version,查看是否切换到python3.5 工作环境

3. 安装并测试tensorflow

切换到tensorflow的计算环境以后,然后开始用pip安装

[plain]  view plain  copy
 print ? 在CODE上查看代码片 派生到我的代码片
  1. pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/win/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl  

测试
[plain]  view plain  copy
 print ? 在CODE上查看代码片 派生到我的代码片
  1. python  
  2. >>import tensorflow as tf  
  3. >>hello = tf.constant('Hello, Tensorflow!')  
  4. >>sess = tf.Session()  
  5. >>print(sess.run(hello))  
  6. >>a = tf.constant(10)  
  7. >>b = tf.constant(22)  
  8. >>print(sess.run(a+b))  
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值