Closed exs-avianello closed 8 months ago
I see this with rye
(https://rye-up.com/guide/sources/) 0.24.0 and https://docs.apryse.com/documentation/python/get-started/python3/mac/
Per #1600 (closed as dupe), another library to test with is polygraphy==0.47.1
, which has an entry on the nvidia repo but not PyPI.
uv pip install polygraphy==0.47.1 --index-url https://pypi.ngc.nvidia.com
uv pip install polygraphy==0.47.1 --extra-index-url https://pypi.ngc.nvidia.com
Yeah I suspect the general problem here is that we only look at versions from PyPI, if the package exists on PyPI. So if there are versions that only exist in another index, we miss those right now.
I'm also running into this issue. However, @charliermarsh, the packages I'm trying to install exist on PyPI as well as in CodeArtifact - but the specific version I want to install from CodeArtifact only exists in CodeArtifact (it is differentiated by adding a +etx
to the end of the version).
any way to set a global index-url?
Hello!
I am testing out
uv
with a package called openeye-toolkits, which is not hosted on PyPI but on another (public) package index.If the index is provided as
--index-url
everything works fine* (the download eventually times out but that's probably because of https://github.com/astral-sh/uv/issues/1549):But if the index is provided as an
--extra-index-url
uv
seems to be giving up before looking up the extra index:The equivalent
pip
-native commands work in both cases.Note that it might very well be a problem specific to this package because historically we have had general issues with it / its metadata 🙌