Skip to content

Instantly share code, notes, and snippets.

@heyost
Created March 9, 2017 15:03
Show Gist options
  • Save heyost/fe5806b957d71511ef988da736b735db to your computer and use it in GitHub Desktop.
Save heyost/fe5806b957d71511ef988da736b735db to your computer and use it in GitHub Desktop.
Update all Python PIP
#!/bin/bash
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 sudo pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment