Skip to content

Instantly share code, notes, and snippets.

@fepa
Created January 9, 2019 14:01
Show Gist options
  • Save fepa/3ef89b168d444f83989390133d106d4c to your computer and use it in GitHub Desktop.
Save fepa/3ef89b168d444f83989390133d106d4c to your computer and use it in GitHub Desktop.
Upgrade all outdated pip dependencies
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment