机器学习1:tensorflow安装、环境配置过程

1、下载
到清华镜像下载Anaconda3-4.2.0-Windows-x86_64
下载地址:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
2、安装下载的镜像
注意添加path
如果出错:conda命令不识别,
则手动到系统环境变量中添加

在这里插入图片描述

然后重启cmd命令行,->conda --version成功显示
3、在命令行中使用以下命令创建 conda 环境
->C:\Windows\system32>conda create -n tensorflow python=3.5.2
->C:\Windows\system32>activate tensorflow
4、激活 conda 环境
->C:\Windows\system32>activate tensorflow
->(tensorflow) C:\Windows\system32>pip install --ignore-installed --upgrade https://mirrors.tuna.tsinghua.edu.cn/tensorflow/windows/cpu/tensorflow-1.1.0rc2-cp35-cp35m-win_amd64.whl
5、测试
->import tensorflow
->import tensorflow as tf
->sess = tf.Session()
->a = tf.constant(10)
->b= tf.constant(12)
->sess.run(a+b)
6、结果

在这里插入图片描述

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...