RをRHEL 7にインストールしようとしているこれらのエラー:
--> Finished Dependency Resolution
Error: Package: R-core-3.1.1-7.el7.x86_64 (epel)
Requires: tex(dvips)
Error: Package: R-core-devel-3.1.1-7.el7.x86_64 (epel)
Requires: texinfo-tex
Error: Package: R-java-devel-3.1.1-7.el7.x86_64 (epel)
Requires: java-devel
Error: Package: R-core-3.1.1-7.el7.x86_64 (epel)
Requires: tex(latex)
Error: Package: R-core-devel-3.1.1-7.el7.x86_64 (epel)
Requires: tex(latex)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
Red Hat Subscription Managementに登録されていないシステムを使用しているため、subscription-managerを使用して登録および依存関係を解決することはできません。
tex(dvips)とtex(latex)はどこにありますか?mirror.centos.org/centos/7/os/x86_64/Packages/からダウンロードしようとしていますが、まだ正しいファイルが見つかりません
更新:
最後に、RHELリポジトリの更新に関する問題を解決しました。
cd /etc/yum.repos.d/
vi CentOS-base.repo
[base]
name=CentOS-$releasever – Base
baseurl=http://buildlogs.centos.org/centos/7/os/x86_64-20140704-1/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
priority=1
exclude=php mysql
それとその後:
yum update
yum install texlive
yum install R
...そしてクリーンインストールが完了しました!:)