Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When installing R on Linux CentOS 6.2 I get the following:

Error: Package: R-core-2.10.0-2.el5.x86_64 (/R-core-2.10.0-2.el5.x86_64)
           Requires: libtk8.4.so()(64bit)
Error: Package: R-core-2.10.0-2.el5.x86_64 (/R-core-2.10.0-2.el5.x86_64)
           Requires: libtcl8.4.so()(64bit)

There are several helps out there for this type of error when using CentOS 4 or 5, but not for 6.2. Has anyone found a solution with this OS version? Thanks!

share|improve this question

2 Answers

I'd honestly recommend installing epel:

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

and then just doing

yum install R
share|improve this answer

The above did not work for me. I had to install tcl.

rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm
sudo yum install tcl
sudo yum clean all
sudo yum install R
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.