I would like to install a package from private repo but when I run this:
pip install myapp -i https://myrepo.net/pypi/myfeed/simple
I got this error
ERROR: Could not find a version that satisfies the requirement myapp (from versions: none)
ERROR: No matching distribution found for myapp
I assume this is because requirements for this package are not in the private repo, so I tried to add extra-index-url
pip install myapp -i https://myrepo.net/pypi/myfeed/simple --extra-index-url https://pypi.python.org/pypi
But I got the exact same error
What am I doing wrong?