Pip Install Wheel Version From Private Github Repo
I've packaged my private repo into a wheel. There are different versions of the wheel. Is it possible to install a specific wheel version of the repo using pip from the command lin
Solution 1:
If you want to install a specific wheel, you give pip the path or URL for that wheel:
pip install https://example.com/url/of/wheel.whl
Post a Comment for "Pip Install Wheel Version From Private Github Repo"