Skip to content

Instantly share code, notes, and snippets.

@amatellanes
Created January 6, 2016 22:47
Show Gist options
  • Save amatellanes/bc9ab9cc4a906631512b to your computer and use it in GitHub Desktop.
Save amatellanes/bc9ab9cc4a906631512b to your computer and use it in GitHub Desktop.
Pip Upgrade All Outdated Python Packages
pip list --outdated | awk '{print $1}' | xargs pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment