-
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
Fix/8418 permission denied hg #9442
Fix/8418 permission denied hg #9442
Conversation
Thanks for addressing this. By chance do you know why the issue does not surface in other commands that would attempt to use Regarding the documentation update, it feels somewhat out of place in the pip freeze page, which otherwise does not talk about VCS. The place that talks bout VCS is the pip install page which is not ideal either if the error occurs in pip freeze. Perhaps we should not go that far and consider it is not the purpose of the pip documentation to explain how to resolve VCS installation issues ? |
Why
|
Could I just check, when is this likely to be released? |
The next feature release is scheduled in April, so don't hold your breath for it just yet. |
Hello! I am an automated bot and I have noticed that this pull request is not currently able to be merged. If you are able to either merge the |
9ba7b75
to
1d98af4
Compare
…run the VCS command.
…freeze`` permission denied issue. Update link in source code.
…tring instead of `.format(**locals())`.
Oops, the diff seems borked. Try
|
c6421ba
to
f162f9d
Compare
Hello! I am an automated bot and I have noticed that this pull request is not currently able to be merged. If you are able to either merge the |
Thanks @laurent-laporte-pro! ^>^ |
While the new version fixes the problem, I'd like to add another case of when this error occurs: When the user has a directory that is not-executable to them in their $PATH, then the In my case, a faulty installation of cuda has added |
A new issue and accompanying PR would be appreciated. |
Fix #8418
This change will fix
pip freeze
permission denied error in order to display an understandable error message and offer solutions.Add a section in the documentation to suggest solutions to the
pip freeze
permission denied issue.Correct the coding-style in
VersionControl.run_command()
to use f-string instead of.format(**locals())
.