how to see where pip is installed code example
Example 1: pip version command
pip --version
Example 2: windows where are pip packages installed
#Windows
%localappdata%\programs\python\python38\lib\site-packages
#Installed with chocolatey
C:\Python38\Lib\site-packages
Example 3: how to see pip installed packages
py -m pip list [options]