win10下anaconda安装TensorFlow指定版本

首先下载安装anaconda:https://pan.baidu.com/s/11xJCoAEEqgYt3iAqZsaVyQ

提取码:wxcl

建议安装时修改安装路径不要使用官方路径不然会出现导包不正常的问题:

win10下anaconda安装TensorFlow指定版本

傻瓜安装好后开始安装TensorFlow

第一步、在anaconda中创建TensorFlow独立运行的环境:

conda create --name tensorflow python=3.6

然后**环境:activate tensorflow

win10下anaconda安装TensorFlow指定版本

第二步、使用命令安装指定版本的TensorFlow:

pip install tensorflow==1.2.0

至此安装TensorFlow完成只需两步