参考:
https://blog.youkuaiyun.com/lucboll/article/details/94001177
http://c.biancheng.net/view/1881.html
https://blog.youkuaiyun.com/xiakejiang/article/details/82720815
1、下载安装Anaconda,https://www.anaconda.com,注意
2、检测anaconda环境是否安装成功,命令行窗口中输入:
conda --version
3、在命令行窗口中输入:
conda create -n tensorflow python=3.5.2 (3.5.2根据具体的python版本来修改)
4、注意有提示时输入y
5、命令行窗口输入activate tensorflow进入 tensorflow 环境
6、命令行窗口输入conda install tensorflow
7、等待安装完成
8、如果已安装了 TensorFlow,可以调用 pip install--upgrade tensorflow
进行升级。