How to add package if no pip

1 pointsposted 5 hours ago
by lpcamisoul

Item id: 49261522

2 Comments

emn4tor

5 hours ago

As iyamani said this aint Stack Overflow, but:

Either check if pip exists via py exec. (python -m pip install package_name) or bootstrap pip using ensure pip (python -m ensurepip --default-pip)

Last option would be cloning from source and running python setup.py install

iyamani

5 hours ago

This ain't Stack Overflow.