Last active
October 11, 2016 21:17
-
-
Save clburlison/02896b43a497849d8726dc5b2a66eecc to your computer and use it in GitHub Desktop.
Update pip packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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