Skip to content

Instantly share code, notes, and snippets.

@miabrahams
Created November 18, 2020 19:01
Show Gist options
  • Save miabrahams/1d18407f201ae2b88d875e10c5fbd665 to your computer and use it in GitHub Desktop.
Save miabrahams/1d18407f201ae2b88d875e10c5fbd665 to your computer and use it in GitHub Desktop.
Update all python packages with powershell
pip freeze | foreach-object {pip install -U ($_ -split "==")[0]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment