Skip to content

Instantly share code, notes, and snippets.

@EscVector
Created April 22, 2020 20:59
Show Gist options
  • Save EscVector/9d596241acea019dcf70a45c02631b83 to your computer and use it in GitHub Desktop.
Save EscVector/9d596241acea019dcf70a45c02631b83 to your computer and use it in GitHub Desktop.
Windows 10 - cygwin cmd line quick python update
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