where is all the packages in python code example
Example 1: how to find where python modules are installed
# this will show where numpy is installed
pip show numpy
Example 2: python global site packages
python -m site
# this will show where numpy is installed
pip show numpy
python -m site