-
Notifications
You must be signed in to change notification settings - Fork 3k
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
no-binary / no-use-wheel mismatch #3191
Comments
Do you have an example ? With pip 7.1.2, |
Am I missing something or from pip's point of view there's either source package (sdist) or binary package (wheel) so there's no such thing like non-binary wheel? |
|
The correct syntax is |
:) |
BTW, I thought this was just some emphasis issue in the docs, maybe you should better format this to make it clear the colons should be included. |
@schlamar PR/improvements are welcome :) This is currently documented here: https://pip.pypa.io/en/stable/reference/pip_install/#install-no-binary
Maybe add an example using |
Yes, pip makes no difference between pure python wheels and the other wheels except of course when matching the compatibility tags. |
This really needs an example as pointed out by @schlamar , i thought the same thing that :all: was just to emphasize and noticed binary still being install. Inline example would be best. |
/request-tag docs Can this be reopened again, to track the relevant documentation update? |
I get tricked by this all the time. I write:
The |
Oh man @honnibal. You just cracked my problem. I wrote
I wasn't expecting |
Yeah. I now think it might be useful to have pip abort if Thoughts @pypa/pip-committers? |
That sounds like a good idea. It won't catch every issue ( |
@pfmoore I would like to help with this, but I am not 100% sure where I am supposed to do the check. Would the |
Hi! Is this issue still reproducible or was it fixed in #5847? |
IMO the help message can still be made clearer. Quoting from above:
Maybe adding quotes would help, e.g.:
|
how can the help message be accessed?? |
Based on the views above, I think what we need to do is to emphasize the existence of colons and provide some examples. |
--no-binary
still installs a wheel if this is a non-binary wheel. So--no-binary
is not an 1:1 replacement for--no-use-wheel
and therefore the latter shouldn't be marked as deprecated.See #1891 why
--no-use-wheel
is still an important option.The text was updated successfully, but these errors were encountered: