Skip to content

Instantly share code, notes, and snippets.

@geetanjaligg
Last active August 29, 2015 14:06
Show Gist options
  • Save geetanjaligg/7c6fc00cff7e2e791478 to your computer and use it in GitHub Desktop.
Save geetanjaligg/7c6fc00cff7e2e791478 to your computer and use it in GitHub Desktop.
Install R and R-Studio

Install R

sudo apt-get install r-base-core

To install packages

sudo R

update.packages()

Install RStudio [ Ubunutu ]

32 bit

sudo apt-get install gdebi-core

sudo apt-get install libapparmor1 # Required only for Ubuntu, not Debian

wget http://download2.rstudio.org/rstudio-server-0.98.1056-i386.deb

sudo gdebi rstudio-server-0.98.1056-i386.deb

64 bit

sudo apt-get install gdebi-core

sudo apt-get install libapparmor1 # Required only for Ubuntu, not Debian

wget http://download2.rstudio.org/rstudio-server-0.98.1056-amd64.deb

sudo gdebi rstudio-server-0.98.1056-amd64.deb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment