I can create a new conda environment, with program biopython with this:
biopython
conda create --name snowflakes biopython
What if I do
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:
create_default_packages
.condarc
--no-default-packages
conda create --name myenv python --no-default-packages