How to add package if no pip

1 points | by lpcamisoul 5 hours ago ago

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.