安装 Rstudio 时出现问题。尽管已安装该程序仍无法启动

mic*_*kkk 7 software-installation

我是 Ubuntu 的新手,我最近成功安装了 R 和我经常使用的其他程序。但是,当尝试启动 R-studio 时,我在终端中收到以下错误:

rstudio: error while loading shared libraries: libgstreamer-0.10.so.0: cannot open shared object file: No such file or directory
Run Code Online (Sandbox Code Playgroud)

我应该怎么做才能修复它?我直接从程序网站从 .deb 文件安装了 R-studio。

hg8*_*hg8 4

Rstudio 无法启动,因为它需要该libgstreamer库。你必须安装它:

sudo apt-get install libgstreamer0.10-0
Run Code Online (Sandbox Code Playgroud)

以及相关插件

sudo apt-get install libgstreamer-plugins-base0.10-dev
Run Code Online (Sandbox Code Playgroud)