Install PIP and Packages in Python Embeddable
Download Python Embeddable
Python Embeddable is a lite flavor of python with barebone necessities. It can be used to deploy web-apps to systems which don’t have permission to install python or its packages.
[Download it from Here: Official Python 3.8.9](https://www.python.org/ftp/python/3.8.9/python-3.8.9-embed-amd64.zip)
Configure PIP
Even if explicitly stated that the embeddable version of Python does not support Pip, it is possible with care. You need to:
-
Download and unzip Python embeddable zip file.
-
In the file
python39._pth
or similar, uncomment theimport
command. Result should look similar to this:python39.zip . import site
-
Download get-pip.py to the Python install folder
-
Run
get-pip.py
. this installs Pip into theScripts
directory:python get-pip.py
Install Packages
Run Pip directly from command line as Pip is a executable program (this example is to install Pandas):
.\Scripts\pip install pandas