Skip to content

Instantly share code, notes, and snippets.

@alexeiz
Created March 7, 2017 16:47
Show Gist options
  • Save alexeiz/27627012e343ee371c41bd42c16261ae to your computer and use it in GitHub Desktop.
Save alexeiz/27627012e343ee371c41bd42c16261ae to your computer and use it in GitHub Desktop.
Upgrade outdated pip modules
#!/bin/sh
pip list --outdated --format=legacy | \
sed -E 's/^(\S+)(.*)$/\1/' | \
xargs pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment