start environment conda 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
Example 3: make a new environment conda
conda activate test_env