如何在Debian中安装R Vennerable?

LéoLéopoldHertz Jun-young

关于主题2014的线程很多,但他们的建议在R 3.3.1中不起作用,显然是因为未满足依赖项,但我也无法安装它们

install.packages("Vennerable", repos="http://R-Forge.R-project.org")

以root身份输出

> install.packages("Vennerable", repos="http://R-Forge.R-project.org")
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
Warning: dependencies ‘graph’, ‘RBGL’ are not available
trying URL 'http://R-Forge.R-project.org/src/contrib/Vennerable_3.0.tar.gz'
Content type 'application/x-gzip' length 1727552 bytes (1.6 MB)
==================================================
downloaded 1.6 MB

ERROR: dependencies ‘graph’, ‘RBGL’ are not available for package ‘Vennerable’
* removing ‘/usr/local/lib/R/site-library/Vennerable’

The downloaded source packages are in
    ‘/tmp/Rtmp9Ubsk3/downloaded_packages’
Warning message:
In install.packages("Vennerable", repos = "http://R-Forge.R-project.org") :
  installation of package ‘Vennerable’ had non-zero exit status

> install.packages("graph")
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
Warning message:
package ‘graph’ is not available (for R version 3.3.1) 

> install.packages("RBGL")
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
Warning message:
package ‘RBGL’ is not available (for R version 3.3.1) 

R:3.3.1
操作系统:Debian 8.5
软件包文档:此处

rcs

软件包graphRBGL都在Bioconductor软件包存储库中,以下对我有用:

R> source("http://bioconductor.org/biocLite.R"); biocLite(c("graph", "RBGL"))
R> install.packages("reshape")
R> install.packages("Vennerable", repos="http://R-Forge.R-project.org")

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章