アップデート

アップデート

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、CentOS 6 ミラーでは解決されていない依存関係を持つ R の EL7 バージョンを探していると考えられます。

答え1

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

関連情報