Skip to content

Instantly share code, notes, and snippets.

@clburlison
Last active October 11, 2016 21:17
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 clburlison/02896b43a497849d8726dc5b2a66eecc to your computer and use it in GitHub Desktop.
Save clburlison/02896b43a497849d8726dc5b2a66eecc to your computer and use it in GitHub Desktop.
Update pip packages
# from https://www.reddit.com/r/Python/comments/31viu3/why_pip_doesnt_have_a_command_to_upgrade_all/cq5efx9
pip list --outdated | cut -d ' ' -f1 | cut -d = -f1 | xargs -n1 pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment