[Level 1] Install R in Ubuntu
Here are the steps to install R on Ubuntu 16.04
Wish this helps.
regards,
Stanley Huang
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 $ sudo add-apt-repository 'deb [arch=amd64,i386] https://cran.rstudio.com/bin/linux/ubuntu xenial/' $ sudo apt-get update $ sudo apt-get -y install r-base r-base-core $ sudo -i R ## test RHere are the steps to instal R packages from CRAN
$ sudo -i R > install.packages('__package_name__')
Wish this helps.
regards,
Stanley Huang
Comments
Post a Comment