Python: Update All Packages With pip-review

python_tutorials

Introduction

Updating Python packages can be a hassle. There are many of them – it’s hard to keep track of all the newest versions, and even when you decide what to update, you still have to update each of them manually.

To address this issue, pip-review was created. It lets you smoothly manage all available PyPi updates with simple commands.

Originally a part of the pip-tools package, it now lives on as a standalone convenience wrapper around pip. In this tutorial, we’ll be covering how to update all packages with pip-review.

Install pip-review

You can install pip-review in a virtual environment, if you’d like to contain it, or system-wide. Naturally, installing pip-review is done via pip:

$ pip install pip-review
...
Successfully installed pip-review-1.1.0

Help Page of pip-review

If you forget any of these commands

 

 

To finish reading, please visit source site