Last active
May 21, 2020 20:36
-
-
Save p3jitnath/989f2feb4a22975df445e8e0786727b9 to your computer and use it in GitHub Desktop.
Install R on Ubuntu 20.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt update | |
| sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DF> | |
| sudo add-apt-repository 'deb https://cloud.r-project.org/bin/linux/ubuntu eoan-> | |
| sudo apt install r-base | |
| R --version | |
| # To use R: | |
| # R | |
| # Install RStudio Server | |
| sudo apt-get install gdebi-core | |
| wget https://download2.rstudio.org/server/bionic/amd64/rstudio-server-1.2.5042-amd64.deb | |
| sudo gdebi rstudio-server-1.2.5042-amd64.deb | |
| rstudio-server status | |
| # To use RStudio Server: | |
| # rstudio-server command |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment