where is pip installing packages 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: how to install python libraries using pip
pip install package name
Example 3: install packages with pip from python
pip3 install <package_name>