Problems installing R on Linux CentOS 6.2

前端 未结 3 862
感动是毒
感动是毒 2020-12-15 10:22

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: libt         


        
相关标签:
3条回答
  • 2020-12-15 10:34

    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
    
    0 讨论(0)
  • 2020-12-15 10:42

    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-8.noarch.rpm
    sudo yum install tcl
    sudo yum clean all
    sudo yum install R
    
    0 讨论(0)
  • 2020-12-15 10:49

    Now it is even easier:

    yum install epel-release
    yum install R
    
    0 讨论(0)
提交回复
热议问题