Is there an easy way to get a report of all Python libraries installed via easy_install that have a more recent version available? I don’t want to simply re-run easy_install on a list of known installed libraries, because the newer library might have a non-backwards compatible change. I’d like to get a list so I quickly see what’s changed, and inspect new releases to vet-out any potentially conflicting changes.
Share
Here is a quick script to scan the
easy-install.pthfile and print a list of newer versions of installed packages. You could customize it to only show the newest version available (take max ofparsed_version), tweak the output format, etc:Usage: