我正在尝试从Anaconda Enterprise环境中安装conda-forge
软件包,并且“标准”方法失败了,因为conda
相对于我们的企业anaconda实例进行搜索,而不是使用外部anaconda网址。 conda-forge
频道的完整网址是什么?
在此环境中,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
我可以通过添加conda
来强制http://repo.anaconda.com/pkgs/main
进入默认的公共anaconda频道,但是找不到conda-forge
的等效网址。我尝试了https://anaconda.org/conda-forge/repo
,但不起作用(与上述类似的错误)。
答案 0 :(得分:6)
简短答案
conda-forge
的完全解析网址为https://conda.anaconda.org/conda-forge/
我如何找到它
除其他信息外,conda info
还会显示您在conda中配置的完整频道URL。我用conda-forge
将conda
添加到了工作站的conda config --add channels conda-forge
中,并运行了conda info
。每个频道都有两个网址,分别是<OS>-64
和noarch
,但似乎可以将其剪掉并使用https://conda.anaconda.org/<channel-name>/
。