Skip to content

Instantly share code, notes, and snippets.

@Florents-Tselai
Created April 24, 2015 22:24
Show Gist options
  • Save Florents-Tselai/5ce857233e5d790d1275 to your computer and use it in GitHub Desktop.
Save Florents-Tselai/5ce857233e5d790d1275 to your computer and use it in GitHub Desktop.
Upgrades in parallel all packages in the current python (virtual) environment
# Adapted from http://stackoverflow.com/a/3452888
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | parallel pip install -U {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment