更新

更新

我全新安装了 CentOS 6.5,我不小心添加了 EPEL 7 镜像,并执行了yum update.有没有简单的方法可以回滚并添加 EPEL 6?


更新

我随后也添加了 EPEL 6:

rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

现在当我这样做时

rpm -qa | grep epel

我明白了

epel-release-6-8.noarch

但是当我尝试安装时R,我得到

Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: liblzma.so.5()(64bit)
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: liblzma.so.5(XZ_5.0)(64bit)
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: libtiff.so.5()(64bit)
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: libpcre.so.1()(64bit)
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: libpng15.so.15()(64bit)
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: libicui18n.so.50()(64bit)
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: libquadmath.so.0()(64bit)
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: libpng15.so.15(PNG15_0)(64bit)
Error: Package: R-java-3.1.1-3.el7.x86_64 (epel)
           Requires: java-headless
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: libicuuc.so.50()(64bit)
Error: Package: R-core-3.1.1-3.el7.x86_64 (epel)
           Requires: libtiff.so.5(LIBTIFF_4.0)(64bit)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

R-core-3.1.1-3.el7.x86_64让我相信它正在寻找 R 的 EL7 版本,它具有在 CentOS 6 镜像中未解决的依赖项。

答案1

yum erase epel-release-6-8.noarch
yum install epel-release-6-8.noarch

相关内容