Write the currently installed module with freeze and save it in a text file Load it with uninstall
pip freeze > piplist.txt
sudo pip uninstall -r piplist.txt
For some reason I got an error with permissions, so I also added sudo
Recommended Posts