-
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
How to run pip from checkout? #5747
Comments
What's wrong with |
I don't want to install development version to ruin my system. There should be a way to execute dev pip with a single command from checkout that doesn't affect anything outside project directory. |
whipspers virtualenv |
Create a virtualenv or let tox set them up for you? tox will create the environment and then you can run pip from within it - ./.tox/py36/bin/pip. As an aside, I suggest you use the latest version of the development docs, since they contain more up-to-date instructions: https://pip.pypa.io/en/latest/development/ |
Yea, I know, no need to whisper.
I didn't notice that I am using old docs version. I don't see the point in syncing docs to version of pip. Better have always updated docs that include historical info. Thanks for the pointers though, |
No |
@techtonik so fix it with a patch or fix it by providing a tool that fixes it for all of python |
BTW, why nobody recommends |
@techtonik Because frankly nobody but you seems to be so resistant to the various approaches that have already been suggested. If you now have a solution that satisfies you, can this issue be closed? |
Done in #5752. I included explanation that clears my doubts and |
I'll go ahead and close this since we have a PR for discussion on the next steps. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
What's the problem this feature will solve?
Testing my patch that I rebased after several years on a machine with no development environment.
Describe the solution you'd like
https://pip.pypa.io/en/stable/development/ page should list how to current
pip
from git clone. Ideally as an OS independent one-liner.The text was updated successfully, but these errors were encountered: