Skip to content

Instantly share code, notes, and snippets.

@like-a-freedom
Created February 7, 2020 06:17
Show Gist options
  • Select an option

  • Save like-a-freedom/19c3b78a497604f0b1e3514adacc67c2 to your computer and use it in GitHub Desktop.

Select an option

Save like-a-freedom/19c3b78a497604f0b1e3514adacc67c2 to your computer and use it in GitHub Desktop.
Update all pip packages at one time
pip freeze — local | grep -v ‘^\-e’ | cut -d = -f 1 | xargs -n1 pip install -U
or
pip install -U $(pip freeze | cut -d '=' -f 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment