-
Notifications
You must be signed in to change notification settings - Fork 2.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
Run python -m pip
instead of pip
#262
Conversation
Thanks! Could you execute black on the Also, could you rebase your PR on the |
I've fixed formatting, but I'm getting an error in travis, hope you can help with it. |
I had similar issue with |
I'd like to inform you that tox recently got a workaround for such cases - tox-dev/tox#794 |
And recently |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Tonkonozhenko Thanks for this contribution!
To get this across the finish line we need to do the following:
Update the mock used in testing here
Manually test that this works when not mocked
Works for me. Thank you! |
Hello. How should we proceed with this PR? |
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
FYI, this is completely obsoleted now. |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
When you try to run pip in venv in a directory with a long full path you get an error. To avoid this you need to run
python -m pip
instead ofpip
.