当前位置: 代码迷 >> 综合 >> Anaconda 删除自己配置的镜像源
  详细解决方案

Anaconda 删除自己配置的镜像源

热度:114   发布时间:2023-10-17 22:13:13.0

显示原来的镜像源

$ conda config --show
channels:- https://pypi.doubanio.com/simple/- defaults

添加新镜像源

$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
channels:- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/- https://pypi.doubanio.com/simple/- defaults

删除旧镜像源

$ conda config --remove channels https://pypi.doubanio.com/simple/
channels:- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/- defaults



作者:谢小帅
链接:https://www.jianshu.com/p/39819bcb889f
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

  相关解决方案