i wanted to update my R version currently using 2.10. used the command sudo apt-get update R also tried with sudo apt-get upgrade R. both didnt work. please can you help to solve this....
i wanted to update my R version currently using 2.10. used the command sudo apt-get update R also tried with sudo apt-get upgrade R. both didnt work. please can you help to solve this....
Here is the answer:
sudo su
echo "deb http://www.stats.bris.ac.uk/R/bin/linux/ubuntu precise/" >> /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
apt-get update
apt-get upgrade
Still worked Feb 7 2018
A simple notice :
sudo lsb_release -a # to check the OS version
Will return Codename. My Ubuntu is 14.04, Codename is trusty.
So, original in the answer:
echo "deb http://www.stats.bris.ac.uk/R/bin/linux/ubuntu precise/" >> /etc/apt/sources.list
Now edit:
echo "deb http://www.stats.bris.ac.uk/R/bin/linux/ubuntu trusty/" >> /etc/apt/sources.list
Then go on in the same way :
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
apt-get update
apt-get upgrade
To my trusty update to R 3.6, just changed:
echo "deb http://www.stats.bris.ac.uk/R/bin/linux/ubuntu trusty-cran35/" >> /etc/apt/sources.list
A little more of detail that can be useful
echo "deb http://www.stats.bris.ac.uk/R/bin/linux/ubuntu precise/" >> /etc/apt/sources.list
This lane add as superuser the address of the repository of R into the end of the list of repositories that are used for Ubuntu's updates and upgrades. This address will work if you have the "precise" version of Ubuntu (that is version 12.04). It will not work, however, if you have a different Ubuntu version, as this name changes
For example, Ubuntu 15.04's name is "Vivid". Ubuntu 15.10's name is "Wily", and so on. You can know the name of your version by accessing to THIS WEB PAGE
For updates, most of the times this lane don't need to be added to the sources.list, but an editing of the sources.list is required instead. You can find that in a previous update, the lane defining a previous cran R repository has been deactivated by using a "#" . Use vi, pico, emacs, gedit or whatever your favorite editor is to change the name of the Ubuntu version, and erase the comment tag
Use the keyserver code only if it is needed or requested.
Thank you!
Still worked 2017 March 29th (changing the version of Ubuntu & adding this cmd line) :
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1397BC53640DB551
echo "deb http://www.stats.bris.ac.uk/R/bin/linux/ubuntu trusty/" >> /etc/apt/sources.list
-->To determine the code name of the system you are running, open a terminal and use the command
lsb_release -a
Still worked in September 14 2017. The solution proposed in the CRAN website https://cran.r-project.org/bin/linux/ubuntu/README.html did not help me.
Update R version (3.4 -> 3.5) in Ubuntu 16.04 (xenial):
sudo su
echo "deb https://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/" >> /etc/apt/sources.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
apt-get update
apt-get install r-base
apt-get install r-base-dev
Hello, I have tried this but I can't make it work. I checked my Ubuntu 18 LTS code name.
sudo lsb_release -a
Codename: bionic Then I followed this link ( http://www.stats.bris.ac.uk/R/bin/linux) and navigated until the folder that I though was correct. Then I did:
echo "deb http://www.stats.bris.ac.uk/R/bin/linux/ubuntu/bionic-cran35/" >> /etc/apt/sources.list
Followed by: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9 Output
gpg: key 4359ED62E084DAB9: "Totally Legit Signing Key <mallory@example.org>" not changed
gpg: Total number processed: 1 gpg: unchanged: 1
When I run
apt-get update
I get
E: Malformed entry 56 in list file /etc/apt/sources.list (Suite)
E: The list of sources could not be read.
I have check line 56 and it looks alright to me. Thank you very much
Made it work by deleting everything related to R first
rm -rf /usr/local/lib/R
I then used
sudo add-apt-repository "deb http://cran.rstudio.com/bin/linux/ubuntu $(lsb_release -sc)/"
and continued with the above protocol
Did not work April 2022. Used same code with my Ubuntu keyword (focal). Did not return any errors but my R version was unchanged:
r-base-dev is already the newest version (3.6.3-2).
Then I did what I should have done originally and checked the official R website. This worked: https://cloud.r-project.org/bin/linux/ubuntu/
First check which version of R is supported for your Ubuntu using this link
From the package list it looks like you are using Ubuntu 10.04 LTS (Lucid Lynx), so you may want to upgrade to:
Or wait for the next LTS to become available, Ubuntu 14.04 (Trusty Tahr), in April 2014. The Ubuntu LTS releases are supported for five years, so you will want to upgrade soon in any case so you might want to get that out of the way.
If you want to try and upgrade your R packages then see 2.6 Are there Unix-like binaries for R? in the R FAQ for options.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
If the new version corresponds to the second digit. For instance, you want to update from 3.4 to 3.5:
If the new version corresponds to the third digit. For instance, you want to update from 3.5.1 to 3.5.2:
Additionally, maybe you need to update bioconductor and/or the packages. To do that:
Update bioconductor:
Update the packages