我想通过在R中运行命令在Windows 7机器上下载并安装pandoc。这可能吗?
(我知道我可以手动执行此操作,但是当我向学生展示时 - 我可以在R代码块中组织的步骤越多越好)
答案 0 :(得分:12)
如何简单地下载最新版本的安装程序并从R:
开始 a)确定最新版本的Pandoc并借助XML
包抓取网址:
library(XML)
page <- readLines('http://code.google.com/p/pandoc/downloads/list', warn = FALSE)
pagetree <- htmlTreeParse(page, error=function(...){}, useInternalNodes = TRUE, encoding='UTF-8')
url <- xpathSApply(pagetree, '//tr[2]//td[1]//a ', xmlAttrs)[1]
url <- paste('http', url, sep = ':')
b)或者通过 @ G.Grothendieck 来应用一些正则表达式魔法(不需要XML
包这样):
page <- readLines('http://code.google.com/p/pandoc/downloads/list', warn = FALSE)
pat <- "//pandoc.googlecode.com/files/pandoc-[0-9.]+-setup.exe"
line <- grep(pat, page, value = TRUE); m <- regexpr(pat, line)
url <- paste('http', regmatches(line, m), sep = ':')
c)或者,如果您愿意,只需手动检查最新版本:
url <- 'http://pandoc.googlecode.com/files/pandoc-1.10.1-setup.exe'
将文件下载为binary
:
t <- tempfile(fileext = '.exe')
download.file(url, t, mode = 'wb')
只需从R:
运行即可system(t)
安装后删除不必要的文件:
unlink(t)
PS:抱歉,仅在Windows XP上测试