how to activate conda command line code example
Example 1: delete conda environment
conda remove --name myenv --all
Example 2: conda create environment from file
conda env create -f environment.yml
conda remove --name myenv --all
conda env create -f environment.yml