How to install R studio on xfce remote desktop?
I am currently handling my remote server through RDP with an Xfce desktop interface. It has an ubuntu 18.04 version. I want to use it for implementing R and I am quite familiar with R-Studio. Can I somehow install it through the Xfce GUI interface? If yes, how? If not, what to do?
1 Answer
You have to open Xfce terminal and then execute the following commands to install R and RStudio:
sudo apt-get update
cd ~/Downloads
wget -c -O rstudio-latest-amd64.deb \
# build deps for many R-packages
sudo apt-get install build-essential libssl-dev libcurl4-openssl-dev libxml2-dev libcairo2-dev
# RStudio by itself
sudo apt-get install ./rstudio-latest-amd64.debThen run rstudio from terminal or find RStudio in Xfce menu.