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