官网下载Anaconda(安装时注意添加环境变量):
https://www.anaconda.com/download/
安装完后cmd检查python版本:
cmd命令(更改镜像,加速下载):
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
cmd命令(创建TensorFlow位置):
conda create -n tensorflow python=选择你的python版本
如果已配好,可以anaconda选择环境:
打开anaconda prompt,输入命令:
activate tensorflow
安装CPU版:
pip install --upgrade --ignore-installed tensorflow
如果需要安装GPU版:
conda create -n tensorflowGPU python=你的python版本
conda install tensorflow-gpu