Skip to content

Instantly share code, notes, and snippets.

@sillage
Last active November 2, 2019 21:40
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 sillage/5ae6d6c318516778b694 to your computer and use it in GitHub Desktop.
Save sillage/5ae6d6c318516778b694 to your computer and use it in GitHub Desktop.
Upgrade all PyPI packages
#!/bin/sh
for p in $(pip list --outdated | awk -F ' ' 'NR>2{print $1}')
do pip install --upgrade $p
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment