-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
uv pip compile --universal
is not universal enough for an x86 mac
#7557
Comments
For |
I am using python 3.10.
|
Oh sorry, you're saying the subsequent install doesn't work. Yes that's correct and it's the same as #5182. Feel free to track that issue -- it's an extremely hard problem to solve. |
@charliermarsh After reading #5182, I think this is a different issue if I understand correctly. #5182 is about resolving between In this ticket, we don't have the issue introduced by the local version. Edit: It seems that |
Yes, I think the problem is in I have no problem installing pytorch 2.4.1 with pip:
But I cannot install it with uv (under the same environment)
|
How are you providing the Apple index? |
Note that |
Thank you for the discussion. After doing more debugging, I think you were right: the problem I have is a duplication of #5182 due to the problem between |
It seems that
uv pip compile --universal
does not support x86 macos directly. On my intel mac,You will get
Things work normally when you remove the
--universal
flag, in whichuv
will installtorch==2.2.2
, which still supports x86 macos.The text was updated successfully, but these errors were encountered: