I have created an own pypi server ClueReleaseManager to 'mimic' the pypi server, followed the instructions and successfully uploaded a package to my own package server.
But how can I download and install the package from my server using pip install
? I have configured the file .pypirc
correctly, at least for the upload, and tried the following:
pip install MyPackage --no-index --find-links http://localhost:8081
pip install MyPackage --no-index --index-url http://localhost:8081
but in any case the package is not found. How can I do this, ideally with the name of the index-server
already specified in .pypirc
?