Anaconda下载与安装

2022-05-06 20:50:43 浏览数 (1)

Anaconda解决了官方Python的两大痛点:

(1)提供了包管理功能,Windows平台安装第三方包经常失败的场景得以解决。

(2)提供环境管理功能,解决了多版本Python并存、切换的问题。

1、下载

https://www.anaconda.com/

https://www.anaconda.com/download/#download

2、安装

等待一段时间

3、配置国内镜像

http://docs.anaconda.com/anaconda/user-guide/getting-started/

代码语言:javascript复制
 conda info
代码语言:javascript复制
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
代码语言:javascript复制
conda config --show

4、删除镜像

最近发现清华镜像有问题,改用科大镜像试试。

代码语言:javascript复制
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
代码语言:javascript复制
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
代码语言:javascript复制
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

0 人点赞