Skip to content

Instantly share code, notes, and snippets.

@kireal
Created April 11, 2016 02:14
Show Gist options
  • Save kireal/c59a39ce67463dc6e148b32412d9105a to your computer and use it in GitHub Desktop.
Save kireal/c59a39ce67463dc6e148b32412d9105a to your computer and use it in GitHub Desktop.
sh command which upgrades all pip packages
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment