我使用R 3.4.3,我需要安装devtools :: install_github(“rstudio / rmarkdown”)。但是出现以下安装错误。
Downloading GitHub repo rstudio/rmarkdown@master
from URL https://api.github.com/repos/rstudio/rmarkdown/zipball/master
Installation failed: zip file 'C:\Users\Buster\AppData\Local\Temp\RtmpWyl4FP\file3bc6c571eec.zip' cannot be opened
Warning messages:
1: GitHub repo contains submodules, may not function as expected!
2: In utils::unzip(src, exdir = target) :
error 1 in extracting from zip file
我该如何安装?
答案 0 :(得分:0)
这已经解决了。我使用了devtools :: install_url(" http://cran.r-project.org/src/contrib/rmarkdown_1.9.tar.gz")
答案 1 :(得分:0)
正如README中针对rmarkdown所解释的那样:
如果你在RStudio工作,那么你可以简单地安装 当前版本的RStudio(rmarkdown软件包和pandoc都是 包括在内)。
如果你想在RStudio之外使用rmarkdown软件包那么你 可以按如下方式从CRAN安装软件包:
install.packages("rmarkdown")
这是一种更简洁的做法:
devtools::install_url("http://cran.r-project.org/src/contrib/rmarkdown_1.9.tar.gz")