Answers for "delete an environment"

C++
23

list conda environments

conda info --envs

conda env list
Posted by: Guest on March-25-2020
0

remove virtual environment python

# If you are using, virtualenvwrapper, aka you used mkvirtualenv to create your virtal environment. 
rmvirtualenv <virtual-environment-name>

# This is if you used any other virtualenv to create your virtual environment
sudo rm -rf <virtual-environment-name>
Posted by: Guest on June-09-2021

Code answers related to "delete an environment"

Browse Popular Code Answers by Language