Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MarcHeiden/ace5abf609c7765ae642a1fdf8ed7ecc to your computer and use it in GitHub Desktop.
Save MarcHeiden/ace5abf609c7765ae642a1fdf8ed7ecc to your computer and use it in GitHub Desktop.

Upgrade all outdated pip packages with powershell

Use the following powershell command to upgrade all outdated pip packages:

> pip list -o | %{pip install -U $_.split(" ")[0]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment