最終更新:2022-08-24 (水) 10:07:39 (631d)  

conda-forge
Top / conda-forge

A community-led collection of recipes, build infrastructure and distributions for the conda package manager.

https://conda-forge.org/

https://anaconda.org/conda-forge

conda config --add channels conda-forge
conda config --set channel_priority strict
conda install <package-name>

conda config --get channels

  • 上のコマンドを実行するとこうなる
    --add channels 'defaults'   # lowest priority
    --add channels 'conda-forge'   # highest priority

メモ

  • Using conda-forge is as easy! Make sure you have at least conda >=4.6, then you just have to register the conda-forge channel as a package source for conda,
  • and activate the strict channel priority (strict will be activated by default in conda 5.0).
  • https://conda-forge.org/docs/user/introduction.html

削除

  • conda config --remove channels conda-forge

highest priorityにしない

  • conda config --append channels conda-forge

比較