I installed embedded python from here, titled \"Windows x86-64 embeddable zip file\", but it does not have pip installed, it does not have site-packages either, when I try t
Pip can also be accessed programatically within python as a command (this example installs pandas):
import pip pip.main(['install'], 'pandas')
(Source: Installing python module within code)