Ubuntu安装Anconda并设置镜像源

1 下载

1 官网(速度比较慢)
https://www.anaconda.com/distribution/#download-section
2 清华镜像(推荐)
https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/

2 安装

1 在安装包文件夹打开终端
2 执行命令 :bash Anaconda3-5.2.0-Linux-x86_64.sh
3 阅读注册信息,输入yes
4 安装完成,重启终端

3 配置

1 添加镜像源

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/main/
conda config --set show_channel_urls yes

2 查看当前镜像

conda config --show-sources 

你可能感兴趣的:(Ubuntu软件安装,Ubuntu,anconda,python)