什么是完整的 conda-forge 频道 url?

What is the full conda-forge channel url?

我正在尝试从 Anaconda Enterprise 环境中安装 conda-forge 包,但 "standard" 方法失败了,因为 conda 正在搜索相对于我们的企业 anaconda 实例,而不是使用外部蟒蛇 url。 conda-forge 频道的完整 url 是多少?

在此环境中 conda 通道的默认基础 url 是 https://wwwdesign.anaconda.company.com/repository/conda,所以当我使用

channels:
    - conda-forge

我收到以下错误:

WARNING: The remote server could not find the noarch directory for the requested channel with url: https://wwwdesign.anaconda.company.com/repository/conda/conda-forge

我可以通过添加 http://repo.anaconda.com/pkgs/main 强制 conda 查看默认的 public anaconda 频道,但我找不到 [=13] 的等效 url =].我试过 https://anaconda.org/conda-forge/repo,但它不起作用(与上述类似的错误)。

简答 conda-forge 的完全解析 url 是 https://conda.anaconda.org/conda-forge/

我是怎么找到它的 在其他信息中,conda info 吐出您在 conda 中配置的完整频道 URL。我用 conda config --add channels conda-forge 和 运行 conda infoconda-forge 添加到我工作站的 conda。每个频道你会得到两个 url,一个 <OS>-64noarch,但你似乎可以把它剪掉并使用 https://conda.anaconda.org/<channel-name>/ .