在Ubuntu 17.04安装Rstudio无法满足依赖性
问题描述:
我已经安装了R:在Ubuntu 17.04安装Rstudio无法满足依赖性
$ R
R version 3.3.2 (2016-10-31) -- "Sincere Pumpkin Patch"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
,现在我想安装RStudio。我从他们的网站下载https://www.rstudio.com/products/rstudio/download/的.deb文件:
rstudio-1.0.143-i386.deb
但我得到一个错误:
Status: Error: Cannot satisfy dependencies.
我应该在安装Rstudio那么之前安装什么?
答
我使用Anaconda Navigator安装了Rstudio 1.0.136。好简单。点击&点击。
答
取决于你得到什么错误。我需要安装以下(可能需要sudo
):
apt-get install libjpeg62
你似乎是运行R的64位版本,并安装[R工作室的32位版本。所以我建议首先尝试64位R Studio。如果这不起作用,那么在终端运行'dpkg -i rstudio-1.0.143-amd64.deb',它应该抱怨它不能满足哪些依赖关系 - 如果你不能从那里清除它,添加输出到你的问题。 – GregHNZ
@GregHNZ我必须安装'libgstreamer-plugins-base0.10-0_0.10.36-1_amd64.deb'和'libgstreamer0.10-0_0.10.36-1.5ubuntu1_amd64.deb'作为依赖项。这应该已经在他们的网站中提到过! – laukok