py -m pip list [options]
#Windows
%localappdata%programspythonpython38libsite-packages
#Installed with chocolatey
C:Python38Libsite-packages
#In the terminal type:
which -a pip
#It should return paths for available pips, for example:
usr/local/bin/pip
/home/coderunner/anaconda3/bin/pip
#To install a package using one of these pips, for eaxample first pip:
usr/local/bin/pip install packagename
pip freeze
pipenv lock -r