无法在 ubuntu 18.04.3 LTS 上启动 R studio

无法在 ubuntu 18.04.3 LTS 上启动 R studio

我使用本教程来安装 RStudiohttps://linuxhint.com/rstudio-for-ubuntu/

但是当我开始这个阶段时sudo gdebi -n rstudio-0.99.896-amd64.deb

它说

Reading package lists... Done
Building dependency tree        
Reading state information... Done
Reading state information... Done
This package is uninstallable
Dependency is not satisfiable: libgstreamer0.10-0

答案1

完全rstudio-0.99.896-amd64.deb过时了。你指的是 3 年前的帖子。

您应该使用官方的 RStudio 软件包源 -https://rstudio.com/products/rstudio/download/并下载Ubuntu 18/Debian 10使用下载链接或以编程方式从中获取变体:

cd ~/Downloads
wget https://download1.rstudio.org/desktop/bionic/amd64/rstudio-1.3.1073-amd64.deb
sudo apt-get install ./rstudio-1.3.1073-amd64.deb

相关内容