参考博客:https://blog.csdn.net/yuejisuo1948/article/details/81043823
举个例子:
假设你想安装python3.6.5,在表格中找到它,它下方的anaconda3-5.2.0就是你需要下载的包;
假设你想安装python3.7.0,在表格中找到它,它下方的anaconda3-5.3.0或5.3.1就是你需要下载的包;
镜像下载地址:清华镜像链接
官方下载地址:https://repo.anaconda.com/archive/
我的是anaconda 3.5.2,这个是我的习惯,Python=3.6
一般来说anaconda中的安装镜像源是国外的,我们这里先更改为国内镜像源:
打开 anaconda prompt
设置输入清华的仓库镜像,第一次添加,第二次移至最优先
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/free/
conda config --set show_channel_urls yes
举个例子:我要安装 matplotlib