-
Notifications
You must be signed in to change notification settings - Fork 879
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PIP_EXTRA_INDEX_URL ignored #1450
Comments
Also, using
Please let me know if this ticket is a good place to raise this or if I shall open a new one. |
Yes, it seems like the same issue with a different error code. |
I don't love reading environment variables that are specifically intended for other tools. It's similar to reading configuration that's intended for other tools -- it can cause problems if they change their own format. I'd prefer to have |
That makes sense! Breaks the “drop in replacement” but only a tiny bit and for a very good reason. Thanks for the quick follow up and for this amazing package, can hardly wait to use it! |
It looks that "--index-url" and "--no-build" is not support in requirements file. For example:
|
Index URL is supported, no-build is not. This is covered in other issues. |
I am not sure that extra-index-url works good, because that tries to install packages only from extra-index-url
If I use pip install -r requirements.txt then all packages are installed without problem.
|
Do you know why your index is returning a 401? If it returns an error code like 404, we would continue to search PyPI. |
Hi, I am not sure, but it works with original pip.
I tried to download package by wget manually and it works as well.
|
Trying to run
uv pip compile
as a direct replacement forpython -m piptools compile
, it seems that the environment variable I have set forPIP_EXTRA_INDEX_URL
is not picked up yet byuv
.The text was updated successfully, but these errors were encountered: