Python Conda无法访问Bioconda频道

Python Conda无法访问Bioconda频道,python,anaconda,conda,Python,Anaconda,Conda,我尝试使用conda install-c在我的anaconda3环境中安装软件包,并且只使用conda install安装软件包,但每次都失败。 我收到的错误是: Collecting package metadata (current_repodata.json): failed UnavailableInvalidChannel: The channel is not accessible or is invalid. channel name: bioconda channel

我尝试使用
conda install-c
在我的anaconda3环境中安装软件包,并且只使用
conda install
安装软件包,但每次都失败。 我收到的错误是:

Collecting package metadata (current_repodata.json): failed

UnavailableInvalidChannel: The channel is not accessible or is invalid.
  channel name: bioconda
  channel url: https://conda.anaconda.org/bioconda
  error code: 404

You will need to adjust your conda configuration to proceed.
Use `conda config --show channels` to view your configuration's current state,
and use `conda config --show-sources` to view config file locations.
我在conda配置中添加了bioconda、conda forge和defaults作为通道。无论是什么包,我都会收到这个错误,我确信这些包存在于给定频道下的anaconda网站中

conda config——显示频道

  - defaults
  - conda-forge
  - bioconda

conda配置--显示源代码
给我


有谁能帮忙吗

我不确定你的康达版本是什么。但可能会有帮助。可能是暂时的失败,bioconda正在为我工作。顺便说一句,您的频道没有按照conda forge/bioconda的建议设置,
默认值应排在最后。@FabienP我确实按照conda forge/bioconda的建议尝试过这个列表。但它仍然会产生同样的错误,我无法复制这个问题。你的机器离线了吗?您可以访问网址(即
https://conda.anaconda.org/bioconda
)?@merv是的,网站运行良好
ssl_verify: False
channels:
  - defaults
  - conda-forge
  - bioconda