Skip to content

Instantly share code, notes, and snippets.

@SteelPangolin
Created April 3, 2015 03:39
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 SteelPangolin/d8066311ceef3f5537a6 to your computer and use it in GitHub Desktop.
Save SteelPangolin/d8066311ceef3f5537a6 to your computer and use it in GitHub Desktop.
Upgrade all outdated packages managed by pip. Great for virtualenvs.
#!/bin/sh
pip list --outdated | cut -d ' ' -f 1 | xargs pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment