嗨,我在从RGUI-3.3.1安装DMwR软件包时收到了这个错误消息。
Error in read.dcf(file.path(pkgname, "DESCRIPTION"), c("Package", "Type")) :
cannot open the connection
In addition: Warning messages:
1: In unzip(zipname, exdir = dest) : error 1 in extracting from zip file
2: In read.dcf(file.path(pkgname, "DESCRIPTION"), c("Package", "Type")) :
cannot open compressed file 'bitops/DESCRIPTION', probable reason 'No such file or directory'发布于 2020-06-18 14:55:53
原因是软件包'DMwR‘是在R版本3.4.3下构建的。
因此,这个解决方案实际上是在标记的答案中详细解释的。
因此,简短:
只需运行下面的脚本,以解决问题!
install.packages('abind')
install.packages('zoo')
install.packages('xts')
install.packages('quantmod')
install.packages('ROCR')
install.packages("DMwR")
library("DMwR")https://stackoverflow.com/questions/39845442
复制相似问题