Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save burgil/f2ed6447d707150a4686ae64a1bde80c to your computer and use it in GitHub Desktop.
Save burgil/f2ed6447d707150a4686ae64a1bde80c to your computer and use it in GitHub Desktop.
This Gist answers the questions: "How can I view all the installed pip packages?" and "How can I uninstall all pip packages in windows?"

How can I view all the installed pip packages?

python freeze

How can I uninstall all pip packages in windows?

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