Skip to content

Instantly share code, notes, and snippets.

@phoenixthrush
Created January 2, 2026 17:55
Show Gist options
  • Select an option

  • Save phoenixthrush/cdd8793e94f8f7c6c31afffb3b50e05e to your computer and use it in GitHub Desktop.

Select an option

Save phoenixthrush/cdd8793e94f8f7c6c31afffb3b50e05e to your computer and use it in GitHub Desktop.
Uninstall all currently installed Python packages automatically, effectively resetting the Python environment #Python #pip
#!/bin/env bash
pip freeze | xargs pip uninstall -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment