Last active
July 6, 2018 20:36
-
-
Save seandavi/f945fd51a02be3749a9647b5c1b520d0 to your computer and use it in GitHub Desktop.
Install rstudio server on debian
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
#!/bin/bash | |
sudo apt-get install -y libcurl4-openssl-dev libxml2-dev libssl-dev | |
sudo apt-get install -y r-base r-base-dev | |
sudo apt-get install -y gdebi-core | |
wget https://download2.rstudio.org/rstudio-server-1.0.136-amd64.deb | |
sudo gdebi --non-interactive rstudio-server-1.0.136-amd64.deb | |
# rstudio will be running on port 8787 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you know if we can use this on Raspbian? Thanks!