6

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?

henryJack
  • 4,220
  • 2
  • 20
  • 24

1 Answers1

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