list anaconda environment code example
Example 1: conda create environment python 3.6
conda create -n myenv python=x.x
Example 2: how to make a conda environment
conda create --name myenv
#to activate environment:
conda activate myenv
Example 3: create new env in anaconda
conda create --name myenv