首页 > 系统相关> > CentOS6在使用yum install 时提示镜像源路径不存在:PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found
CentOS6在使用yum install 时提示镜像源路径不存在:PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found
作者:互联网
场景
CentOS6.9的版本在使用
yum install gcc-c++
安装C和C++的插件时提示:
PYCURL ERROR 22 - “The requested URL returned error: 404 Not Found“
注:
博客:
https://blog.csdn.net/badao_liumang_qizhi
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。
实现
一开始在使用yum安装插件时提示:
Loading mirror speeds from cached hostfile
Nothing to do
就是找不到镜像源,所以通过
cd /etc/yum.repos.d mv CentOS-Base.repo CentOS-Base.repo.backup wget http://mirrors.163.com/.help/CentOS6-Base-163.repo mv CentOS6-Base-163.repo CentOS-Base.repo yum clean all
以上的命令更换为163的数据源又报了上面的错误。
再执行以下命令
wget -O /etc/yum.repos.d/CentOS-Base.repo http://file.kangle.odata.cc/repo/Centos-6.repo wget -O /etc/yum.repos.d/epel.repo http://file.kangle.odata.cc/repo/epel-6.repo yum makecache
就能使用yum命令了。
标签:requested,PYCURL,CentOS,repo,etc,Base,yum,error,wget 来源: https://www.cnblogs.com/badaoliumangqizhi/p/14699979.html