Created
January 2, 2026 17:55
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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