Created
February 12, 2018 15:27
-
-
Save danielfleischer/45ab2a4d7d90c1d7a2d4592dcba586d3 to your computer and use it in GitHub Desktop.
pip upgrade script, interactive version (asks before each outdated package is upgraded)
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
#!/usr/bin/env bash | |
pip3 list --outdated | awk '{print $1}' | xargs -n1 -p pip3 install -U |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment