Skip to content

Instantly share code, notes, and snippets.

@tobami
Created December 2, 2015 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobami/a543e107bf4d8c61c0da to your computer and use it in GitHub Desktop.
Save tobami/a543e107bf4d8c61c0da to your computer and use it in GitHub Desktop.
Upgrade all packages in a virtualenv
pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment