Skip to content

Instantly share code, notes, and snippets.

@tudisco
Last active January 11, 2017 04:33
Show Gist options
  • Save tudisco/0f0d5126fea10bc14d060d3b91088b6b to your computer and use it in GitHub Desktop.
Save tudisco/0f0d5126fea10bc14d060d3b91088b6b to your computer and use it in GitHub Desktop.
Pip update all packages windows
# This is probably faster
#for /F "delims= " %i in ('pip list --outdated') do pip install -U %i
for /F "delims===" %i in ('pip freeze -l') do pip install -U %i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment