मैं आरएचईएल 7 पर आर स्थापित करने की कोशिश कर रहा हूं। मैं एपेल-रिलीज़ -7-2.noarch.rpm का उपयोग कर रहा हूं और कई निर्भरताएं (एक-एक करके मैनुअल .rpm इंस्टॉलेशन) को हल कर रहा हूं, लेकिन मुझे जो निर्भरता संकल्प मिला है, उसके अंत में। ये त्रुटियां:
--> 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 सदस्यता प्रबंधन में पंजीकृत नहीं एक प्रणाली का उपयोग कर रहा हूं, इसलिए मैं इसे पंजीकृत करने और निर्भरता को हल करने के लिए सदस्यता-प्रबंधक का उपयोग नहीं कर सकता।
मुझे टेक्स (DVips) और टेक्स (लेटेक्स) कहां मिल सकते हैं? मैं इसे 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
... और एक साफ स्थापना किया! :)