R语言安装DMwR报错解决方法

如果代码是

install.packages("DMwR")

那可能是安装包的版本问题,改为

install.packages("DMwR2")

试一下。导入的时候也是

library("DMwR2")

改错具体过程:

    一开始以为是RStudio的版本不够新,更新完Rstudio发现还是不行;又下载了Rtools,还是报错

安装DMwR代码如下

install.packages("DMwR")

报错显示

Warning in install.packages :
  package ‘DMwR’ is not available for this version of R

A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages

    (其实没下载Rtools和更新Rstudio的时候报错是另外一个不过没有截图,

大致是Rtools is required to build R packages but is not currently installed

然后尝试过改安装的镜像,下载Rtools和更新Rstudio后报错变成上面这个)

      偶然发现存在DMwR2包,尝试了一下下载成功了。

      建议先改为DMwR2试试,如果不行可以更新一下RStudio安装Rtools.

上一篇:R packages的install技巧


下一篇:(转)Python 之 pip安装 及 使用详解