How to remove all packages installed by pip
Sometimes 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...





