Erdal TAŞKESENwww.erdaltaskesen.com·Mar 29, 2018How to remove all packages installed by pipSometimes you want to get rid of all python packages. There is a quick and easy way to do this. The command below will also remove the packages installed via VCS. pip freeze | grep -v "^-e" | xargs pip uninstall -y You may also use the command below...56 readsPythonAdd a thoughtful commentNo comments yetBe the first to start the conversation.