Skip to content

Instantly share code, notes, and snippets.

@julianobarbosa
Created August 6, 2019 15:41
Show Gist options
  • Save julianobarbosa/84ec6c30d40259dd3a37ee9276c6f27d to your computer and use it in GitHub Desktop.
Save julianobarbosa/84ec6c30d40259dd3a37ee9276c6f27d to your computer and use it in GitHub Desktop.
Python pip update
pip list -o | ForEach-Object { $data=$_ -split " "; python -m pip install -U $data[0]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment