Skip to content

Instantly share code, notes, and snippets.

@devraj
Created July 26, 2015 07:00
Show Gist options
  • Save devraj/8234a77469934638dc90 to your computer and use it in GitHub Desktop.
Save devraj/8234a77469934638dc90 to your computer and use it in GitHub Desktop.
Python update all packages
# modified from http://stackoverflow.com/questions/2720014/upgrading-all-packages-with-pip
sudo pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 sudo pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment