Skip to content

Instantly share code, notes, and snippets.

@maxxst
Created March 5, 2013 11:42
Show Gist options
  • Save maxxst/5089743 to your computer and use it in GitHub Desktop.
Save maxxst/5089743 to your computer and use it in GitHub Desktop.
OSX Terminal command to update all PIP installed Python addons
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment