How do I list the files associated with a Python package installed using pip or easy_install?

You could do that by using command:

pip show -f <package>

Leave a Comment