Shell/Bash: conda remove environment Example
Shell/Bash Example: This is the "conda remove environment" Example. compiled from many sources on the internet by SimpleTutorials.org
conda remove environment
conda remove --name myenv --all
list conda environments
conda info --envs conda env list
conda create environment python 3.6
conda create -n myenv python=x.x
conda env
conda create -n myenv python=3.6
anaconda duplicate environment
conda create --name myclone --clone myenv
conda list environments
conda info --envs
* Summary: This "conda remove environment" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!