【Anaconda】更改默认镜像源

方法1:目前网上常用方法

打开Anaconda Prompt

【Anaconda】更改默认镜像源_第1张图片

使用添加镜像源命令

展示已有镜像源
conda config --show channels

添加镜像源(个人一般只用第二个)
conda config --add channels https://mirrors.aliyun.com/pypi/simple/
conda config --add channels https://pypi.tuna.tsinghua.edu.cn/simple/
conda config --add channels https://pypi.douban.com/
conda config --add channels https://pypi.mirrors.ustc.edu.cn/

删除指定镜像源
conda config --remove channels https://pypi.tuna.tsinghua.edu.cn/simple

删除全部镜像源
conda config --remove-key channels

存在的问题:下载第三方包的时候可能会显示该链接不安全,存在证书认证的问题

在这里插入图片描述
出现该问题的原因是这个网址存在安全认证风险
【Anaconda】更改默认镜像源_第2张图片

解决方法1:http变为https

若添加了上述镜像源依旧下载不了,则通过下述方式实现:
pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple

解决方法2:信任该网址

如果存在证书确认问题,就以这样的形式下载导入包
pip install xxx -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

上述两个解决方案都不太完美,每次下载第三方包都需要后缀一串命令

方法2:可用,但目前网上很少见

C盘搜索 '.condarc’文件

一般都在c盘用户目录下
【Anaconda】更改默认镜像源_第3张图片

修改为如下内容

show_channel_urls: true
default_channels:
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
channels:
  - defaults

你可能感兴趣的:(#,第三方库及Anaconda,python,conda,开发语言)