Home > Mobile >  Installing the pip library
Installing the pip library

Time:06-15

ERROR: Could not install packages due to an OSError: [WinError 5] Отказано в доступе: 'C:\Users\Arnold\AppData\Local\Temp\pip-uninstall-o43r1hbu\pip.exe'
Consider using the --user option or check the permissions.

Please tell me how to fix this error?

CodePudding user response:

Probably you do not have a correct rights to install packages. Did you try to do:

pip install "your_package_name" --user

CodePudding user response:

Another solution may be (if you have the right permissions) to run command prompt as administrator. That should give you the right permissions to install packages.

  • Related