Running pip install seems to create the directory structure + files specified in data_files
in /usr/local
However, if I run:
import sys
sys.prefix
I get the string /usr
.
Is there any way to figure out where pip installed the data_files for a specific package in a distribution/OS agnostic way ?
Note: I am installing a package from a github repostiroy instead of pypi so maybe this results in the different behavior ?