# create conda env from scratch
conda create -n myenv python=3.9
# create conda env from yml
conda env create -f environment.yml
# export env to yml, from inside the env
conda env export > environment.yml
# remove a conda env
conda remove --name myenv --all
# see all the conda env installed
conda info --envs