Skip to content

Instantly share code, notes, and snippets.

@mGalarnyk
Last active February 24, 2022 12:07
Show Gist options
  • Star 35 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save mGalarnyk/41c887e921e712baf86fecc507b3afc7 to your computer and use it in GitHub Desktop.
Save mGalarnyk/41c887e921e712baf86fecc507b3afc7 to your computer and use it in GitHub Desktop.
# Install R + RStudio on Ubuntu 16.04
sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys E084DAB9
# Ubuntu 12.04: precise
# Ubuntu 14.04: trusty
# Ubuntu 16.04: xenial
# Basic format of next line deb https://<my.favorite.cran.mirror>/bin/linux/ubuntu <enter your ubuntu version>/
sudo add-apt-repository 'deb https://ftp.ussg.iu.edu/CRAN/bin/linux/ubuntu xenial/'
sudo apt-get update
sudo apt-get install r-base
sudo apt-get install r-base-dev
# Download and Install RStudio
sudo apt-get install gdebi-core
wget https://download1.rstudio.org/rstudio-1.0.44-amd64.deb
sudo gdebi rstudio-1.0.44-amd64.deb
rm rstudio-1.0.44-amd64.deb
@susajsnair
Copy link

susajsnair commented Apr 5, 2020

i am having issues
r

when try to open after the installation, showing a blank rstudio application

@miguelvaara
Copy link

Great! Thank a lot! :-). Works nicely

@mridulgain
Copy link

Thanks !!!

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