python win10 出现 ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问 的解决办法

python win10 出现 ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问的解决办法

  • 问题环境
  • 问题现象
  • 解决办法

问题环境

python 3.8.6 + Windows 10

问题现象

在使用pip install xxx安装某个包时,报错如下:

ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问

解决办法

第一直觉是因为权限不够引起的,但是使用管理员模式运行cmd,再次运行pip install xxx,命令安装,但是仍然安装失败。

最后解决办法是使用如下命令安装:

python -m pip install  xxx

你可能感兴趣的:(#,python,python)