conda info --envsconda info -e | Get a list of all my environmentsActive environment shown with * |
conda create --name snowflakes biopythonconda create -n snowflakes biopython | Create an environment and install program(s) |
conda activate snowflakes | Activate the new environment to use it |
conda deactivate | Deactivate the environment |
conda create -n bunnies python=3.4 astroid | Create a new environment, specify Python version |
conda create -n flowers --clone snowflakes | Make exact copy of an environment |
conda remove -n flowers --all | Delete an environment |
conda env export > puppies.yml | Save current environment to a file |
conda env create -f puppies.yml | Load environment from a file |