1

R 3.5.0 was released on April 25, 2018. I'm trying to install R 3.5.0 on Ubuntu 18.04 LTS. I tried the following code

echo "deb http://cran.stat.ucla.edu/bin/linux/ubuntu `lsb_release -sc`/" | sudo tee --append /etc/apt/sources.list.d/cran.list
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
sudo apt update
sudo apt install r-base

Reading package lists... Done
Building dependency tree       
Reading state information... Done
r-base is already the newest version (3.4.4-1ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Wonder how to get install R 3.5.0 on Ubuntu 18.04 LTS.

MYaseen208
  • 22,666
  • 37
  • 165
  • 309

1 Answers1

5

You can always compile from source, if there is not a binary. For compilation instructions you can see: https://www.r-bloggers.com/installing-r-on-ubuntu/