Created
April 16, 2018 11:51
-
-
Save jeffryang24/6f96022fbad73e7d909413bad8ddef9f to your computer and use it in GitHub Desktop.
pip recursive upgrade packages
This file contains hidden or 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
#!/bin/bash | |
# Upgrade all pip outdated packages | |
pip install -U -r <(pip list --outdated --format=freeze | sed 's/==/>=/') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment