Should conda, or conda-forge be used for Python environments?

前端 未结 4 1841
眼角桃花
眼角桃花 2020-11-30 16:54

Conda and conda-forge are both Python package managers. What is the appropriate choice when a package exists in both repositories? Django, for exam

4条回答
  •  一生所求
    2020-11-30 17:23

    Anaconda has changed their Terms of Service so that "heavy commercial users" would have to pay, which doesn't include conda-forge channel.

    You probably would want to stick to conda-forge if you don't want to pay for the usage. As stated in the docs:

    conda config --add channels conda-forge
    conda config --set channel_priority strict
    conda install 
    

    You could also use miniforge which has conda-forge as the default channel, and supports ppc64le and aarch64 platforms as well as the other usual ones.

提交回复
热议问题