web-dev-qa-db-ja.com

完全なconda-forgeチャネルURLとは何ですか?

アナコンダエンタープライズ環境からconda-forgeパッケージをインストールしようとしていますが、condaが外部アナコンダの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

condahttp://repo.anaconda.com/pkgs/mainを追加することで、デフォルトのパブリックアナコンダチャネルを強制的に表示できますが、conda-forgeに相当するURLが見つかりません。 https://anaconda.org/conda-forge/repoを試しましたが、機能しません(上記と同様のエラー)。

8
Zane Dufour

短い回答conda-forgeの完全に解決されたURLはhttps://conda.anaconda.org/conda-forge/

私がそれを見つけた方法他の情報の中で、conda infoは、condaで構成した完全なチャネルURLを吐き出します。ワークステーションのcondaconda-forgeconda config --add channels conda-forgeで追加し、conda infoを実行しました。チャネルごとに<OS>-64noarchの2つのURLを取得しますが、それを切り取ってhttps://conda.anaconda.org/<channel-name>/を使用できるようです。

10
Zane Dufour