install from neigboring env code example
Example 1: conda remove environment
conda remove --name myenv --all
Example 2: make a new environment conda
conda create -n test_env python=3.6.3 anaconda
conda remove --name myenv --all
conda create -n test_env python=3.6.3 anaconda