Create empty conda environment

后端 未结 4 554
梦谈多话
梦谈多话 2020-12-04 09:37

I can create a new conda environment, with program biopython with this:

conda create --name snowflakes biopython

What if I do

4条回答
  •  無奈伤痛
    2020-12-04 09:52

    If you've created a create_default_packages block in your .condarc file, @joelion's answer will install those packages. If you don't want those, use the --no-default-packages flag. For example:

    conda create --name myenv python --no-default-packages
    

提交回复
热议问题