Skip to content

Instantly share code, notes, and snippets.

@javierluraschi
Created May 29, 2018 21:03
Show Gist options
  • Save javierluraschi/a52a89553e821683f95416907e415a5f to your computer and use it in GitHub Desktop.
Save javierluraschi/a52a89553e821683f95416907e415a5f to your computer and use it in GitHub Desktop.
Install RStudio Server in Suse
Verified using Amazon EC2 Suse 12 machine.
See [http://download.opensuse.org/repositories/devel:/languages:/R:/patched/](http://download.opensuse.org/repositories/devel:/languages:/R:/patched/), then from [https://forums.opensuse.org/showthread.php/517620-Installing-R](https://forums.opensuse.org/showthread.php/517620-Installing-R):
```bash
zypper ar -f http://download.opensuse.org/repositories/devel:/languages:/R:/patched/openSUSE_12.3/ R-patched
zypper --gpg-auto-import-keys ref
zypper in R-patched R-patched-devel
```
Follow [https://www.rstudio.com/products/rstudio/download-server/](https://www.rstudio.com/products/rstudio/download-server/):
```
wget https://download2.rstudio.org/rstudio-server-suse-1.1.453-x86_64.rpm
sudo zypper install rstudio-server-suse-1.1.453-x86_64.rpm
```
Daily builds [https://dailies.rstudio.com/rstudioserver/oss/suse/x86_64/](https://dailies.rstudio.com/rstudioserver/oss/suse/x86_64/):
```
wget https://s3.amazonaws.com/rstudio-ide-build/server/opensuse/x86_64/rstudio-server-1.2.670-x86_64.rpm
sudo zypper install rstudio-server-1.2.670-x86_64.rpm
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment