Created
April 20, 2012 22:25
-
-
Save brianriley/2432321 to your computer and use it in GitHub Desktop.
Upgrade all installed 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
pip freeze | awk '{split($1, a, "=="); print a[1]}' | while read package; do pip install $package --upgrade; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment