Using pip, is it possible to figure out which version of a package is currently installed?
I know about pip install XYZ --upgrade but I am wondering if there is anything like pip info XYZ. If not what would be the best way to tell what version I am currently using.
As of pip 1.3, there is a
pip showcommand.In older versions,
pip freezeandgrepshould do the job nicely.