conda remove current environment code example
Example 1: remove conda environment
conda remove --name myenv --all
Example 2: how to make conda to use global packages
export PYTHONNOUSERSITE=0
conda remove --name myenv --all
export PYTHONNOUSERSITE=0