Skip to content

Instantly share code, notes, and snippets.

@glebm
Last active January 29, 2021 21:02
Show Gist options
  • Save glebm/68edcf261dd63d02bebc542e7ee94931 to your computer and use it in GitHub Desktop.
Save glebm/68edcf261dd63d02bebc542e7ee94931 to your computer and use it in GitHub Desktop.
Install RStudio on ChromeOS (29 Jan 2021)

First, install Linux (beta) by following the "Turn on Linux (Beta)" steps described here https://support.google.com/chromebook/answer/9145439?hl=en-GB

Then, copy-paste the following command into the Linux terminal (the black window that opens after you install Linux) and press Enter:

sudo apt update && sudo apt -y upgrade && sudo apt -y install r-base wget libnss3 && \
  wget https://download1.rstudio.org/desktop/bionic/amd64/rstudio-1.4.1103-amd64.deb && \
  sudo apt -y install ./rstudio-1.4.1103-amd64.deb

This will take about ~10 minutes, after which you will have fully functional R-Studio with R v3.5. You can find in the ChromeOS menu.

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