forked from Azure/azureml-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathubuntu-install-RStudio-pro.sh
More file actions
16 lines (16 loc) · 897 Bytes
/
Copy pathubuntu-install-RStudio-pro.sh
File metadata and controls
16 lines (16 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
echo "Add R-base Repository....."
add-apt-repository 'deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran40/'
echo "Running System update....."
apt-get update -y
echo "Install R programming language....."
apt-get install r-base r-base-core r-recommended -y
echo "Finished R programming language Installation...."
wget --quiet -O "rstudio-workbench-2022.02.2-485.pro2-amd64.deb" https://download2.rstudio.org/server/bionic/amd64/rstudio-workbench-2022.02.2-485.pro2-amd64.deb
echo "y" | sudo gdebi rstudio-workbench-2022.02.2-485.pro2-amd64.deb
echo "Finished installing RStudio Server....."
echo "Install Rstudio Desktop for Rstudio"
echo "downloading rstudio desktop...."
wget https://download1.rstudio.org/desktop/bionic/amd64/rstudio-pro-2022.02.2-485.pro2-amd64.deb
apt install ./rstudio-pro-2022.02.2-485.pro2-amd64.deb -y
echo "Finished installing RStudio Desktop....."