Answers for "uninstall virtual environment python pip"

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
1

uninstall a python package from virtualenv

pip uninstall <packagename>
Posted by: Guest on September-08-2020

Code answers related to "uninstall virtual environment python pip"

Browse Popular Code Answers by Language