I have a wheel file for a compiled package from here. I would like to host this on my internal pypi server. Is it possible?
Asked
Active
Viewed 6,774 times
1 Answers
11
Yes! Just change to the directory where your wheel file is, then...
pip install twine
twine upload file_name.whl --repository-url https://pip.server_name.com/
You may be asked to enter you pypi username and password if required. The uploaded package name will be the same as the local filename.

henryJack
- 4,220
- 2
- 20
- 24