where are python packages installed code example
Example 1: find location of library python linux
import module_name
print(module_name.__file__)
Example 2: how to find where python modules are installed
pip show numpy
Example 3: python global site packages
python -m site
Example 4: where are python libraries installed in windows
pip list -v
Example 5: where are chocolatey packages installed
Some packages are installed under ChocolateyInstall\lib, others
- especially packages that are based on Windows installers (.msi files)
- install to the default path of the original installer (which is most likely within Program Files).