Skip to content

Instantly share code, notes, and snippets.

@o-az
Created July 6, 2022 00: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 o-az/2836d31037fc387a30eb1e0a3bbda0df to your computer and use it in GitHub Desktop.
Save o-az/2836d31037fc387a30eb1e0a3bbda0df to your computer and use it in GitHub Desktop.
update all python pip packages in one command
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment