Created
April 22, 2020 20:59
-
-
Save EscVector/9d596241acea019dcf70a45c02631b83 to your computer and use it in GitHub Desktop.
Windows 10 - cygwin cmd line quick python update
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 this is for direct install onto a machine without virtenv | |
REM uses combo cygwin integrated and old dos commands | |
pip list --outdated --format=columns |tail -n +3|cut -d " " -f1 > update.txt | |
for /f %i in (update.txt) do pip install %i --upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment