Answers for "uninstall all libraries python venv"

1

uninstall a python package from virtualenv

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

pip uninstall all from env

pip freeze > requirements.txt
# removes one by one
pip uninstall -r requirements.txt
# removes all at once
pip uninstall -r requirements.txt -y
Posted by: Guest on October-12-2021

Code answers related to "uninstall all libraries python venv"

Browse Popular Code Answers by Language