File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -72,3 +72,21 @@ Examples
72
72
73
73
env1\b in\p ython -m pip freeze > requirements.txt
74
74
env2\b in\p ython -m pip install -r requirements.txt
75
+
76
+
77
+ Fixing "Permission denied:" errors
78
+ ==================================
79
+
80
+ The purpose of this section of documentation is to provide practical
81
+ suggestions to users seeing a `"Permission denied" error <https://github.com/pypa/pip/issues/8418 >`__ on ``pip freeze ``.
82
+
83
+ This error occurs, for instance, when the command is installed only for another
84
+ user, and the current user doesn't have the permission to execute the other
85
+ user's command.
86
+
87
+ To solve that issue, you can try one of the followings:
88
+
89
+ - Install the command for yourself (e.g. in your home directory).
90
+ - Ask the system admin to allow this command for all users.
91
+ - Check and correct the PATH variable of your own environment.
92
+ - Check the `ACL (Access-Control List) <https://en.wikipedia.org/wiki/Access-control_list >`_ for this command.
You can’t perform that action at this time.
0 commit comments