From larry.martell at gmail.com Fri Jul 21 15:04:30 2017 From: larry.martell at gmail.com (Larry Martell) Date: Fri, 21 Jul 2017 11:04:30 -0400 Subject: [rhelv6-list] Installing R 3.4.0 Message-ID: I am trying to install R 3.4.0 on RHEL6. If I look here is it there: http://mirror.sjc02.svwh.net/fedora-epel/6/x86_64/ I did this: sudo subscription-manager repos --enable rhel-6-server-optional-rpms sudo subscription-manager repos --enable rhel-6-server-extras-rpms wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm rpm epel-release-latest-6.noarch.rpm Which all worked OK. And then I did: sudo yum install R Loaded plugins: dellsysid, product-id, refresh-packagekit, security, subscription-manager Setting up Install Process No package R available. How can I install 3.4.0? Thanks! From brilong at cisco.com Fri Jul 21 17:08:27 2017 From: brilong at cisco.com (Brian Long (brilong)) Date: Fri, 21 Jul 2017 17:08:27 +0000 Subject: [rhelv6-list] Installing R 3.4.0 In-Reply-To: References: Message-ID: See inline. On 7/21/17, 11:04 AM, "rhelv6-list-bounces at redhat.com on behalf of Larry Martell" wrote: I am trying to install R 3.4.0 on RHEL6. If I look here is it there: http://mirror.sjc02.svwh.net/fedora-epel/6/x86_64/ I did this: sudo subscription-manager repos --enable rhel-6-server-optional-rpms sudo subscription-manager repos --enable rhel-6-server-extras-rpms wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm rpm epel-release-latest-6.noarch.rpm Did you actually run ?rpm ?Uvh epel-release-latest-6.noarch.rpm? to install the RPM? Once you verify epel-release is installed (rpm ?q epel-release), run this command: # yum --enablerepo=epel list R and verify R is listed. If so, you can proceed to run the following command: # yum --enablerepo=epel install R By the way, on my RHEL 7 host with EPEL, I see various R-related packages are also available. They might be helpful with your efforts. R.x86_64 R-RInside.x86_64 R-RInside-devel.x86_64 R-RInside-examples.x86_64 R-RUnit.noarch R-Rcpp.x86_64 R-Rcpp-devel.x86_64 R-Rcpp-examples.x86_64 R-core.x86_64 R-core-devel.x86_64 R-devel.x86_64 R-highlight.x86_64 R-inline.noarch R-java.x86_64 R-java-devel.x86_64 R-littler.x86_64 R-littler-examples.x86_64 R-qtl.x86_64 R-rlecuyer.x86_64 I got this list by running the following command: # yum --enablerepo=epel list R-\* /Brian/ -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 4070 bytes Desc: not available URL: From larry.martell at gmail.com Fri Jul 21 17:22:20 2017 From: larry.martell at gmail.com (Larry Martell) Date: Fri, 21 Jul 2017 13:22:20 -0400 Subject: [rhelv6-list] Installing R 3.4.0 In-Reply-To: References: Message-ID: On Fri, Jul 21, 2017 at 1:08 PM, Brian Long (brilong) wrote: > See inline. > > On 7/21/17, 11:04 AM, "rhelv6-list-bounces at redhat.com on behalf of Larry Martell" wrote: > > I am trying to install R 3.4.0 on RHEL6. If I look here is it there: > > http://mirror.sjc02.svwh.net/fedora-epel/6/x86_64/ > > I did this: > > sudo subscription-manager repos --enable rhel-6-server-optional-rpms > sudo subscription-manager repos --enable rhel-6-server-extras-rpms > wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm > rpm epel-release-latest-6.noarch.rpm > > Did you actually run ?rpm ?Uvh epel-release-latest-6.noarch.rpm? to install the RPM? Yes, I did do that, and I got "package epel-release-6-8.noarch is already installed. Bu then I did this "sudo rpm -Uvh epel-release-latest-6.noarch.rpm --force" and then I was able to successfully install R. Thanks!