Skip to content

Instantly share code, notes, and snippets.

@HorlogeSkynet
Last active April 14, 2020 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HorlogeSkynet/8408d2cc8689adb95fdc4af94773a981 to your computer and use it in GitHub Desktop.
Save HorlogeSkynet/8408d2cc8689adb95fdc4af94773a981 to your computer and use it in GitHub Desktop.
A simple command line to uninstall each PIP package installed by a regular user
#!/usr/bin/env bash
pip3 freeze --user | xargs pip3 uninstall -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment