0

我正在尝试使用http://r-pkgs.had.co.nz/intro.html上的包开发书打包一些我为个人使用而开发的脚本。我一直在安装开发工具时遇到问题,事实证明这非常令人沮丧。

这适用于 R 版本 3.4.4,它已经设置为与 knitr 和 rmarkdown 一起使用以生成报告。它位于公司网络和计算机上,这使网络在很大程度上不受我的控制。我确实安装了 RTools (v.3.5.0.4),它与 ​​RBuildTools 位于同一目录中。

运行“has_devel()”时,我遇到一个循环,其中 Rstudio 尝试安装 RBuildTools,完成时没有错误或通知,但是当重新检查“has_devel()”时,它会尝试再次安装它。

我浏览了https://github.com/r-lib/devtools/issues/234的列表,但没有一个解决方案有效。

会话信息

R version 3.4.4 (2018-03-15)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)

Matrix products: default

locale:
[1] LC_COLLATE=English_United States.1252 
[2] LC_CTYPE=English_United States.1252   
[3] LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C                          
[5] LC_TIME=English_United States.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets 
[6] methods   base     

loaded via a namespace (and not attached):
[1] compiler_3.4.4 tools_3.4.4    yaml_2.2.0    
[4] xfun_0.5      
> library(devtools)
> has_devel()
Error: Could not find tools necessary to compile a package
> has_devel()
trying URL 'https://cran.revolutionanalytics.com/bin/windows/Rtools/Rtools35.exe'
Content type 'application/octet-stream' length 108622512 bytes (103.6 MB)
downloaded 103.6 MB

Error: Could not find tools necessary to compile a package
> has_devel()
Error: Could not find tools necessary to compile a package

跟进“找不到工具”通知,我尝试加载所有开发工具

devtools::load_all()
Error: No root directory found in \\USERSTORE/02/5028/Documents or its parent directories. Root criterion: contains a file `DESCRIPTION`
In addition: Warning messages:
1: In normalizePath(path.expand(path), winslash, mustWork) :
  path[1]="\\USERSTORE": The specified path is invalid
2: In normalizePath(path.expand(path), winslash, mustWork) :
  path[1]="\\USERSTORE": The specified path is invalid

我只是想设置这个环境,以便我可以开始一个简单的打包过程。

4

1 回答 1

0

我遇到了类似的问题,这是因为我的库安装路径是在网络驱动器上定义的。您的库的目录似乎不存在,或者您没有查看它们的权限。

.libPaths()在运行 install 命令之前,您可以尝试通过函数更改它。

于 2019-04-02T16:04:13.463 回答