how to remove pip installed packages -e code example
Example: delete all pip packages
#Write all modules to a txt file
pip freeze > requirements.txt
#Now to remove one by one:
pip uninstall -r requirements.txt
#If we want to remove all at once then:
pip uninstall -r requirements.txt -y