Python ERROR: Could not install packages due to an OSError:XXX解决方法
文章目录
- Python ERROR: Could not install packages due to an OSError:XXX解决方法
- 一、问题
- 二、原因
- 三、解决办法
一、问题
在使用 pip 安装 python 包时,出现ERROR: Could not install packages due to an OSError: XXX 的错误,这时候主要有两种错误类型,要根据类型来解决问题
错误类型1:
特点:[WinError 5] 拒绝访问 + … + Consider using the –user option or check the permissions
ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。: ‘c:\users\lenovo\python\lib\site-packages\~umpy\.libs\libopenblas.WCDJNK7YVMPZQ2ME2ZZHJJRJ3JIKNDB7.gfortran-win_amd64.dll’
Consider using the --user option or check the permissions.
错误类型2:
特点:[Errno 22] Invalid argument: + …
ERROR: Could not install packages due to an OSError: [Errno 22] Invalid argument: 'C:\\Users\\23659\\AppData\\Local\\Temp\\pip-unpack-m3hir4cb\\pyinstaller-5.7.0-py3-none-win_amd64.whl'
我原本想安装一个用于打包的pyinstaller库,遇到的便是第二种错误,如下图:
开始以为是镜像源下载的问题,换了指定镜像源后但还是没解决
二、原因
错误类型1的原因:权限不足引发的问题
错误类型2的原因:(Invalid argument)无效的命令行参数,后面我才发现,我这情况是被windows安全中心拦截了才导致的命令无效
三、解决办法
解决错误1:
ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。: ‘c:\users\lenovo\python\lib\site-packages\~umpy\.libs\libopenblas.WCDJNK7YVMPZQ2ME2ZZHJJRJ3JIKNDB7.gfortran-win_amd64.dll’
Consider using the --user option or check the permissions.
根据上面报错所提示的内容,在 pip install 后面加上 –user 即可,这个是权限不足引发的问题
pip install --user 包名
其他的解决方法,比如管理园权限运行等,可自行百度操作即可。(本人未实际该类错误解决,只是做个总结,仅供参考)
解决错误2:
关闭windows安全中心的实时保护功能,之后即可正常下载,如下图:
关闭实时保护
正常下载(第一次下载好的图没截,又下载一遍截了一张)
文章出处登录后可见!
已经登录?立即刷新