Skip to content

Instantly share code, notes, and snippets.

@peterkowalski
Last active November 10, 2020 13:05
Show Gist options
  • Save peterkowalski/1af506ecaa1b2f4066424d4f318897e4 to your computer and use it in GitHub Desktop.
Save peterkowalski/1af506ecaa1b2f4066424d4f318897e4 to your computer and use it in GitHub Desktop.
[Upgrade all pip packages] Short snippet which shows different ways of updating all local pip packages
pip freeze > req.txt
pip install -r req.txt --upgrade
pip install pipupgrade
pipupgrade --verbose --latest --yes --pip-path $PIP_PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment