Celeb Glow
news | April 01, 2026

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.deb

Then run rstudio from terminal or find RStudio in Xfce menu.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy