Upgrade all Python packages with pip at once
In this tutorial, we will learn how to upgrade all Python packages with pip at once. There are multiple ways to do so. But here we will try to pick one and the easiest way to update all the packages using pip.
To upgrade all local packages, we have to install the pip-review library.
All the codes are written in the command prompt
pip install pip-review
pip-review --local --interactive
After the “pip-review –local –interactive” code prompt gives us 4 options
- Upgrade now? [Y]es, [N]o, [A]ll, [Q]uit
So in this, we have to choose 3rd option [A]ll. For this, we have to press A and then press enter to update all local packages.
we see some packages are already satisfied and some are updating.
Thus, we have updated all the Python packages with pip at once.
Leave a Reply