python - pip install access denied on Windows -
i trying run pip install mitmproxy
on windows, keep getting access denied, cmd
, powershell
using run administrator
option.
windowserror: [error 5] access denied: 'c:\\users\\bruno\\appdata\\local\\temp\\easy_install-0fme6u\\cryptography-0.9.1\\.eggs\\cffi-1.1.2-py2.7-win-amd64.egg\\_cffi_backend.pyd'
how can make work?
in case of windows, in cmd try run pip install using python executable
e.g.
python -m pip install mitmproxy
this should work, @ least worked me other package installation.
Comments
Post a Comment