-
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
the new issue template should ask how pip was installed #5813
Comments
That sounds like a good idea to me. Maybe also "can you reproduce this using the standard version of pip?" although that could make things worse, by causing people to try to install "the official version of pip" in away that clashes with the distro installation, or some such :-( |
Yeah, it would be great if there was a version of |
It's too bad zipimport does not support files with a comment or this would work: > wget https://github.com/pypa/pip/archive/master.zip
> PYTHONPATH=master.zip/pip-master/src python -m pip --version ;( |
There's probably some corner cases where it doesn't work 100% correctly (I think that there are places that need to reference the cert store from certifi from an actual file, not from a zipfile) but it mostly works. Totally unsupported for any real uses, of course :-) |
👍 I was wondering if there is merit in pushing this even further and ask the user to add post something along the lines of what pipenv does with As an aside, I think we can definitely improve the language in the issue template, to get better issue filings. |
One idea might be a |
One problem, we get a lot of cases where people are running one version of pip when they think they are running another. It'll be awfully easy to get people even more confused because But that minor point aside, I like the idea of a |
Could do something funky like generate a hash of our installation directory and report that. It won't tell us what has changed, but if someone's hash is wrong, that suggests something changed. Whether that something is relevant or not is another question. |
I too like the |
I think it would be better to stick with |
One other thing that would be useful in a Overall, I think that if we added a |
Yep! FWIW, if do go the |
FTR - we have a |
A number of issues are caused by the use of distribution packaged version of pip:
Maybe add a new
How is pip installed?
field. Alternatively, maybe the user should be asked to paste to exact output ofpip --version
(and said output should be amended to at least mention if pip is de-vendored).The text was updated successfully, but these errors were encountered: