1、打开AnacondaPrompt
2、搭建TensorFlow的环境:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
conda create -n tensorflow python=3.5
3、在用户目录下找到文件 .condarc
环境搭建完成:
4、安装(CPU)版的TensorFlow:
// 启动TensorFlow:
activate tensorflow
1