Created
February 7, 2020 06:17
-
-
Save like-a-freedom/19c3b78a497604f0b1e3514adacc67c2 to your computer and use it in GitHub Desktop.
Update all pip packages at one time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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