Skip to content

Instantly share code, notes, and snippets.

@AugustKarlstedt
Created April 30, 2019 18:46
Show Gist options
  • Save AugustKarlstedt/3ad0938991c98606ac8425b30529b981 to your computer and use it in GitHub Desktop.
Save AugustKarlstedt/3ad0938991c98606ac8425b30529b981 to your computer and use it in GitHub Desktop.
update all outdated python packages
pip3 list --outdated | awk '{print $1}' | tail -n +3 | xargs pip3 install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment