create new env conda code example
Example 1: conda create environment
conda create -n myenv python=3.6
Example 2: conda list environments
conda info --envs
Example 3: anaconda remove environment
conda env remove -n ENV_NAME
Example 4: conda create environment
conda create --name myenv
Example 5: make a new environment conda
conda create -n test_env python=3.6.3 anaconda