在Linux CentOS 6.2上安装R的问题

在Linux CentOS 6.2上安装R时,我得到以下内容:

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) 

在使用CentOS 4或5时,有几种帮助可以解决这种错误,而不是6.2。 有没有人find这个操作系统版本的解决scheme? 谢谢!

我诚实地推荐安装epel :

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

然后就这样做

 yum install R 

以上不适合我。 我不得不安装tcl。

 rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm sudo yum install tcl sudo yum clean all sudo yum install R 

现在更容易了:

 yum install epel-release yum install R