Skip to content

Instantly share code, notes, and snippets.

@codehacken
Last active January 7, 2016 23:02
Show Gist options
  • Save codehacken/84f82b18fa12e840984f to your computer and use it in GitHub Desktop.
Save codehacken/84f82b18fa12e840984f to your computer and use it in GitHub Desktop.
Update all Python Packages in Ubuntu
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