How to find outdated Python requirements
Finding outdated Python packages
A quick Python technique this time. You can get a list of outdated Python packages installed on your system with a simple command:
pip list --outdated
That will list all the packages, including their dependencies. That's nice, but sometimes it makes it hard to know what …
Continue reading