show conda environments code example
Example 1: conda list environments
conda info --envs
Example 2: conda create environment from file
conda env create -f environment.yml
Example 3: create new env in anaconda
conda create --name myenv
conda info --envs
conda env create -f environment.yml
conda create --name myenv