what pip command can list installed files for a name package?
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.
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).