如何在 Kubuntu 上安装 R Studio?不是 Ubuntu(安装过程略有不同)。
答案1
我发现在 Kubuntu(目前为 16.04)上安装 RStudio 的最佳方法是首先下载 RStudio .deb 文件。
打开终端:
sudo dpkg -i rstudio-0.99.903-amd64.deb
(或您下载的任何版本)如果失败了(对我来说总是这样),则需要安装依赖项 libjpeg62、libgstreamer0.10-0、libstreamer-plugins-base0.10-0。尝试:
sudo apt-get install libjpeg62
你可能会被提示如下内容:
Reading package lists... Done Building dependency tree Reading state information... Done You might want to run 'apt-get -f install' to correct these: The following packages have unmet dependencies: rstudio : Depends: libgstreamer0.10-0 but it is not going to be installed Depends: libgstreamer-plugins-base0.10-0 but it is not going to be installed Recommends: r-base (>= 2.11.1) but it is not going to be installed E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
继续尝试:
apt-get -f install
依赖项应该已经被安装。
“此命令的作用与 Synaptic 中的“编辑”->“修复损坏的软件包”相同。如果您收到有关软件包具有“未满足的依赖关系”的投诉,请执行此操作。” (https://help.ubuntu.com/community/AptGet/Howto)
- 再试一次:
sudo dpkg -i apt-get install rstudio-0.99.903-amd64.deb
RStudio 应该就能顺利安装。
任何有助于改进此流程的问题或意见都将受到欢迎。
谢谢