Created
April 25, 2018 08:11
-
-
Save stlehmann/df410f05cdf29c370a3665cd4bcac0a1 to your computer and use it in GitHub Desktop.
Autoupgrade script for pip
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
REM Powershell Script | |
pip list --outdated --format=freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_} |
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
# Bash Script | |
pip list --format=legacy --outdated | cut -d' ' -f1 | xargs pip install --upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment