Window10下Anaconda安装tensorflow1.14(CPU版)

  现在如果直接pip install tensorflow的话直接安装的应该是tensorflow的2.0版本,但有些代码是1.0才能跑的。所以本篇文章介绍下在anaconda环境下如何快速配置tensorflow1.0

第一步:建立python3.7虚拟环境

1.1 打开Anaconda Prompt
在这里插入图片描述
1.2 输入以下代码(xxx为建立的环境名):

conda create -n xxx python=3.7

1.3 激活进入新建环境(xxx为建立的环境名):

activate xxx

第二步:安装tensorflow1.14

为了方便下载,可以先更新下清华源:

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2

conda config --set show_channel_urls yes

参考:https://blog.csdn.net/YPP0229/article/details/105630429/
我这里使用本地安装
2.1 进入tensorflow1.14的文件官网:https://pypi.org/project/tensorflow/1.14.0/#files,下载红方格内容:
Window10下Anaconda安装tensorflow1.14(CPU版)_第1张图片

2.2 pip install安装(绝对路径是下载whl文件的路径):

pip install 绝对路径
例如:pip install D:\Desktop\tensorflow-1.14.0-cp37-cp37m-win_amd64.whl

第三步:测试安装成功

conda list tensorflow

出现下面字样,即安装成功:
在这里插入图片描述
然后Anaconda下的环境就建立好了,在pycharm中配置新解释器就可以啦!

ps:安装python尽量不要使用3.5了,现在3.5的维护性已经相当差了。很多东西不再支持了。

参考:https://blog.csdn.net/weixin_55267022/article/details/122864786

你可能感兴趣的:(机器学习,tensorflow,python,深度学习)