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