Skip to content

Instantly share code, notes, and snippets.

@ochen1
Created January 1, 2021 15:39
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 ochen1/1288226e92df5d3a2b50954885afb235 to your computer and use it in GitHub Desktop.
Save ochen1/1288226e92df5d3a2b50954885afb235 to your computer and use it in GitHub Desktop.
Update Python PIP Packages
#!/bin/bash
pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment