what is new environment in anaconda code example
Example 1: create an environment in conda
conda create --name myenv
Example 2: make a new environment conda
conda create -n test_env python=3.6.3 anaconda
conda create --name myenv
conda create -n test_env python=3.6.3 anaconda