R package, RBGL, graph包直接install.package()失败的解决方案

一些R的包不再在CRAN上可用了,我们发现有一些包已经被转移到了Bioconductor,因此,我们需要执行如下语句在console:

install.packages(“BiocInstaller”)
source(“http://bioconductor.org/biocLite.R”)
biocLite(“graph”)
bioLite(“RBGL”)
library(graph)
library(RBGL)

猜你喜欢

转载自blog.csdn.net/u012373972/article/details/82916395