我被困在我正在进行的项目上。安装说明说:
此节点使用程序包R4CouchDB版本0.5.1。目前,此版本在官方存储库上不可用,因此我们将从github下载并安装在R 3.1中 启动R 3.1并将以下代码复制粘贴到R控制台:
###Code Starts here
if (!require("downloader"))
install.packages("downloader")
require(downloader)
url <- "https://github.com/wactbprot/R4CouchDB/archive/master.zip"
zipfile <- paste(getwd(), "/R4CouchDB.zip", sep="")
download(url=url, destfile=zipfile)
unzip(zipfile=zipfile, exdir=getwd())
targzfile <- paste(getwd(), "/R4CouchDB-master/R4CouchDB_0.5.1.tar.gz",sep="")
install.packages(targzfile, repos=NULL, type="source")
unlink(paste(getwd(), "/R4CouchDB-master"), recursive=TRUE)
file.remove(zipfile)
###Code Ends here
但是,当我在我的Windows系统上运行它时,它不会安装该软件包。它返回一个无效的包警告,没有指定包错误
答案 0 :(得分:0)
尝试输入R
控制台:
install.packages("R4CouchDB")
library("R4CouchDB")