ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问
Posted _瞳孔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问相关的知识,希望对你有一定的参考价值。
我是在更新pip版本失败后,出现这个报错的
更新失败时:
之后无论pip的什么命令都会报这个错:
"XXX\\Scripts\\pip.exe\\__main__.py", line 4, in <module> ModuleNotFoundError: No module named 'pip'
所以猜测是pip更新时出错导致用不了了,因此可以重新安装pip:
python -m ensurepip
但安装完成后,使用pip命令安装包时就会有很多warning:WARNING: Ignoring invalid distribution -ip (XXX\\lib\\site-packages)
解决方法是进入python安装目录/Lib/site-packages
,删除所有~开头的文件夹(如下图),这些是由于插件安装失败或中途退出引起的,会导致插件安装异常,删除后pip安装包就正常了
但此时pip仍然不是最新版本,我们可以看到报错提示:
ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。
: 'd:\\\\python\\\\scripts\\\\pip.exe'
Consider using the `--user` option or check the permissions.
可见是目录操作权限不足,可以按照提示在更新命令上加上--user
:
pip install --user --upgrade pip
然后就成功更新了。
如果有兴趣了解更多相关内容,欢迎来我的个人网站看看:瞳孔的个人空间
以上是关于ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问的主要内容,如果未能解决你的问题,请参考以下文章
ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问
解决:ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。
ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。错误记录
解决K8s报错:Error: error installing: the server could not find the requested resource
pip install yaml报错ERROR:Could not find a version that satisfies the requirement yaml
ERROR: Could not install packages due to an EnvironmentError 加--user 也无效的情况