Skip to content

Instantly share code, notes, and snippets.

@atontini
Last active December 29, 2022 13:31
Show Gist options
  • Save atontini/929b7b4d88c059034a50980c9a8eb266 to your computer and use it in GitHub Desktop.
Save atontini/929b7b4d88c059034a50980c9a8eb266 to your computer and use it in GitHub Desktop.
Remove all depencencies using Windows command line
for /f "delims=" %i in ('pip freeze') do pip uninstall -y %i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment