Upgrade all user-installed pip packages

$ pip list --user --outdated --format=json | jq ".[].name" | xargs pip install --user --upgrade

pip list --user --outdated will list all user-installed packages that are outdated. We use jq to extract the package names from the output, and feed it to xargs.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.