create a new anaconda environment code example
Example 1: conda create environment
conda create -n myenv python=3.6
Example 2: anaconda create environment python version
conda create -n myenv python=3.6
Example 3: conda list environments
conda info --envs
Example 4: create new env in anaconda
conda create --name myenv