Closed ellisonleao closed 8 months ago
Does my-private-lib
exist on PyPI? I.e., is there a package with the same name on PyPI (regardless of whether it's "the same" package or an overlapping version)?
Does
my-private-lib
exist on PyPI? I.e., is there a package with the same name on PyPI (regardless of whether it's "the same" package or an overlapping version)?
No it does not, only on gemfury
Okay, I just set one of these up myself...
I assume you're passing something like --index-url https://token@repo.fury.io/username/
? Can you instead try --index-url https://token@pypi.fury.io/username/
? Note that I changed repo.fury.io
to pypi.fury.io
.
It looks like Gemfury relies on the User Agent to know which "kind" of repo to serve, but uv
doesn't say "pip" in its User Agent (it says uv
).
@charliermarsh was able to install it using --extra-index-url
with pypi.fury.io
as hostname. Thank you so much!
Awesome, that's great to confirm!
I've checked other issues with a similar problem but I couldn't see any fixes for that, so sorry if this is already fixed or not. I am basically trying to install some private packages using gemfury private URL as extra index URL. Right now I am getting the following error
Also tried to setting
UV_EXTRA_INDEX_URL
and running the command, but I get the same error. What am I missing?