Python Forum
what pip command can list installed files for a name package? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: what pip command can list installed files for a name package? (/thread-28775.html)



what pip command can list installed files for a name package? - Skaperen - Aug-02-2020

what pip command can list installed files for a name package?


RE: what pip command can list installed files for a name package? - Gribouillis - Aug-02-2020

pip -h


RE: what pip command can list installed files for a name package? - nilamo - Aug-02-2020

pip show {package-name} will tell you what path it's installed at, as well as any packages it requires or that require it. That might be as close as you get from pip.


RE: what pip command can list installed files for a name package? - Skaperen - Aug-04-2020

yeah, i've tried show. i just want to know for a given package name, what files are installed, for an installed package. if it only puts files in that location, for all possible packages, then maybe show really is what i need (i can then run find on that tree).