Reputation: 655
I was going to download R studio for my project, however, I could not find the right version (For Ubuntu 20.01) in their official website
If I download the version that was for Ubuntu 18, then is it compatible in Ubuntu 20.01? If not what are the other ways I can do?
Upvotes: 0
Views: 118
Reputation: 4625
From the official website, here is the list of the supported Ubuntu releases:
The installation instruction:
sudo apt update
sudo apt install --no-install-recommends software-properties-common dirmngr
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
sudo apt install --no-install-recommends r-base
Upvotes: 1