美文网首页
Conda换源踩坑2021-04-18

Conda换源踩坑2021-04-18

作者: 土雕艺术家 | 来源:发表于2021-04-18 15:42 被阅读0次
# 更新conda
conda update -n base conda
conda update -all

CondaHTTPError错误

Collecting package metadata (current_repodata.json): failed
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.ustc.edu.cn/anaconda/pkgs/free/linux-64/repodata.json>
Elapsed: -

咱们首先用ping检查一下网络比如 ping www.baidu.com
如果网络正常那么就是源的问题
显示现有的源

conda config --show channels

目前总结三个方向:
第一个就是添加国内源
第二个就是只用自带的默认源
第三个就是只用国内源
三种方法说不定就那个能行,同一个实验室下,一台是使用默认的源没有啥问题,第二台是只能用国内源才能正常下载,defaults 要删除才行。
修改.condarc文件跟下面原理一样只不过换成用vim ~/.condarc

1-添加源

conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes # 搜索时显示通道地址
conda config --set channel_priority flexible

2-恢复默认源

conda config --remove-key channels #移除现有源
conda config --add channels defaults #添加默认源

conda config --add channels bioconda
conda config --add channels conda-forge

3-只用国内源

conda config --remove-key channels #移除现有源
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
conda config --add channels http://mirrors.ustc.edu.cn/anaconda/pkgs/free/

我这里统一用的都是http的,有的也说可以加上s会好些。反正这东西试来试去最后能用就行。

Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.

最后还有这个解决环境依赖问题,默认应该是严格,可以换成灵活。
conda config --set channel_priority flexible

conda clean #清理

相关文章

  • Conda换源踩坑2021-04-18

    CondaHTTPError错误 咱们首先用ping检查一下网络比如 ping www.baidu.com如果网络...

  • [转载] Windows conda pip 改源

    Windows下conda换源pip换源https://blog.csdn.net/weixin_44201449...

  • conda&jupyter&虚拟环境

    环境版本 win10anaconda:4.9.2(自带jupyter)python:3.8 换源 conda换源使...

  • Anaconda 坑

    记录下踩过的坑 国内的源已经不能用了,我挂了梯子用conda安装还是很慢采用2 的方法比较合适https://mi...

  • conda常用——自用

    conda 查看已安装包 查看虚拟环境 更新 创建虚拟环境 conda换源

  • Conda 换源和PiP换源

    前言 每次配置实验室的Linux GPU服务器时,都会遇见Conda换源的问题,遂在此记录之。 Conda更换为清...

  • conda踩坑总结

    深呼吸,捋一遍conda安装软件与环境管理 - 简书 (jianshu.com)[https://www.jian...

  • Mac下conda换源、pip换源

    conda换国内源 在清华源和中科大源之间自行选择 添加中科大源 添加清华源 pip换源 在home目录下的隐藏文...

  • Anaconda 常用命令大全

    Anaconda 常用命令大全 常用命令 环境管理 Conda 换源 安装32位版本python PIP换源 pi...

  • macOS 换源 conda pip

    https://blog.csdn.net/fenghaodaxia/article/details/104520...

网友评论

      本文标题:Conda换源踩坑2021-04-18

      本文链接:https://www.haomeiwen.com/subject/owcvlltx.html