Answers for "remove an environment"

C++
6

conda env

conda env list
Posted by: Guest on February-20-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

Browse Popular Code Answers by Language