Archit Garg
Archit Garg

Reputation: 69

Rstudio not executing from terminal on ubuntu after installing

I have installed rstudio using steps below:

~$ sudo apt update
~$ sudo apt-get install r-base
~$ sudo apt install gdebi-core
//Downloaded the latest Ubuntu RStudio, `rstudio-server-1.3.959-amd64.deb`
~$ ls
rstudio-server-1.3.959-amd64.deb
~$ sudo gdebi rstudio-server-1.3.959-amd64.deb

After it installed finally to run rstudio

~$ rstudio
rstudio: command not found

It is showing command not found. Is there any other thing we need to do?

Upvotes: 1

Views: 3287

Answers (1)

Man
Man

Reputation: 68

You have installed rstudio-server not rstudio.

To install rstudio:

$ wget https://download2.rstudio.org/server/bionic/amd64/rstudio-se

$ sudo gdebi rstudio-1.3.959-amd64.deb

To run rstudio after installation:

$ rstudio

Upvotes: 2

Related Questions