Answers for "how to remove virtual environment in python"

1

delete virtualenv

sudo rm -rf venv
Posted by: Guest on May-06-2021
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
0

delete virtual environment in python windows

rm -r <YOUR_ENV>
Posted by: Guest on September-06-2021

Code answers related to "how to remove virtual environment in python"

Browse Popular Code Answers by Language