Skip to content

Instantly share code, notes, and snippets.

@lopezjurip
Created September 1, 2015 15:04
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 lopezjurip/14b3a8eae2a35fbe527b to your computer and use it in GitHub Desktop.
Save lopezjurip/14b3a8eae2a35fbe527b to your computer and use it in GitHub Desktop.
Update and clean pip packages
pip3 install --upgrade pip; pip install --upgrade pip; pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U; pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U; rm -rf ~/Library/Caches/pip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment