How to upgrade R in Ubuntu 12.04
[This article was first published on Hidden Treasures, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Open your sources.list file in geditWant to share your content on R-bloggers? click here if you have a blog, or here if you don't.
sudo gedit /etc/apt/sources.list
and add the following line:
deb http://cran.cnr.berkeley.edu/bin/linux/ubuntu/ precise/
Note that you don't have to use that mirror. You may use any mirror from the list here : http://cran.r-project.org/mirrors.html
Add the secure APT key to your system with one command
sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
Update your sources and upgrade your installation
sudo apt-get update && sudo apt-get upgrade
To leave a comment for the author, please follow the link and comment on their blog: Hidden Treasures.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.