Skip to content

Instantly share code, notes, and snippets.

@LanternD
Created July 25, 2020 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LanternD/90d94e431476da8f2a9c62cb8c8c1af5 to your computer and use it in GitHub Desktop.
Save LanternD/90d94e431476da8f2a9c62cb8c8c1af5 to your computer and use it in GitHub Desktop.
Upgrade all pip upgradable packages
# https://www.activestate.com/resources/quick-reads/how-to-update-all-python-packages/
pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment