【发布时间】:2012-06-11 23:03:57
【问题描述】:
是否有其他人在从 github 构建 slidify 包时遇到问题。我想玩,但安装返回错误。以下是我使用的命令和导致的错误:
> library(devtools)
Rtools not on path and not installed in default location.
Warning message:
package ‘devtools’ was built under R version 2.14.2
> install_github('slidify', 'ramnathv')
Installing github repo(s) slidify/master from ramnathv
Installing slidify.zip from https://github.com/ramnathv/slidify/zipball
Installing slidify
* checking for file 'C:\Users\btibert\AppData\Local\Temp\RtmpsrQIgw\ramnathv-slidify-954647c/DESCRIPTION' ... OK
* preparing 'slidify':
* checking DESCRIPTION meta-information ... OK
Warning in .write_description(db, ldpath) :
Unknown encoding with non-ASCII data: converting to ASCII
* checking for LF line-endings in source and make files
* checking for empty or unneeded directories
* building 'slidify_0.1.tar.gz'
ERROR
packaging into .tar.gz failed
Error: Command failed (1)
In addition: Warning message:
running command '"C:/PROGRA~1/R/R-214~1.1/bin/i386/R" CMD build "C:\Users\btibert\AppData\Local\Temp\RtmpsrQIgw\ramnathv-slidify-954647c" --no-manual --no-vignettes' had status 1
我使用的是 Windows 7,但这里是我的会话信息以防万一:
> sessionInfo()
R version 2.14.1 (2011-12-22)
Platform: i386-pc-mingw32/i386 (32-bit)
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] devtools_0.6 plyr_1.7.1 RODBC_1.3-4
loaded via a namespace (and not attached):
[1] RCurl_1.9-5.1 tools_2.14.1
更新:更新到 R 2.15.0 后,我收到以下错误(即使在安装 Rtools 之后):
Warning: invalid package 'Files/R/R-2.15.0/library'
Error: ERROR: cannot cd to directory 'C:/Program'
Error: Command failed (1)
In addition: Warning message:
running command '"C:/PROGRA~1/R/R-215~1.0/bin/i386/R" CMD INSTALL C:\Users\btibert\AppData\Local\Temp\Rtmp8oMxGU/slidify_0.1.tar.gz --library=C:/Program Files/R/R-2.15.0/library' had status 1
【问题讨论】:
-
我开发了
slidify。我在 Mac 上,所以不太确定可能是什么问题。我会看看我是否能找到一台 Windows 机器来构建并找出问题所在。根据您的错误消息,它看起来像rtools安装问题。也许devtools邮件列表或github上的某个人可以提供帮助。 -
在 Mac 上运行良好....不幸的是,我在工作中使用的是 Windows 机器。谢谢你把这个放在一起,我已经等了一段时间了。
-
我现在在 Windows7 上,它安装得很好。 Btibert3 我认为问题在于您运行的是 2.14,而 slidify 将 R (>= 2.15.0) 作为依赖项。
-
@Ramnath 是什么造成了对 >= 2.15 的依赖?
-
做一个拉动,也许试试
devtools中的build_win()函数?我在 Mac 上,它安装得很好,所以我也帮不上什么忙。