2

I am new to this. I was asked to install R version 4.0.3. I was able to download but that requires me to compile. Just checking is there ready made package which I can download and install. Greatly appreciate any help. Thank you so much.

I will be installing this on CentOS 6 and CentOS 7 server.

M.Viking
  • 5,067
  • 4
  • 17
  • 33
Sammy
  • 31
  • 1

1 Answers1

2

Use conda package manager:

# find package 'r-essentials':
conda search r-essentials

# Create environment named 'r' and install package 'r-essentials' there:
conda create -n r r-essentials

# Use it:
conda activate r-essentials
Timur Shtatland
  • 12,024
  • 2
  • 30
  • 47
  • Thank you so much for the quick reply. I am following as per your above steps, when I do that, it's keep installing in / file system. How do I change the location to I want. It's trying to install under /root/conda/pkgs – Sammy Jan 14 '21 at 18:56
  • @Sammy Please see: https://stackoverflow.com/q/35280479/967621 – Timur Shtatland Jan 14 '21 at 18:58