我正在 Windows 机器上使用 Rtools30 和与 RStudio 关联的“构建”工具在 R 3.0.1 中构建 R 包,我假设这些工具与 devtools 相关联(这是最新的)。我构建包的典型过程是:
- 全部加载
- 再充氧
- 构建和重新加载
- 查看
- 构建源包
如果一切顺利,没有错误或警告,那么我:
install.packages("foo.tar.gz", repos=NULL, type="source")
自从升级到 R 3.0.1,我现在收到这个警告:
Warning in install.packages :
foo.tar.gz is not available (for R version 3.0.1)
我在安装前也试过了,它并没有摆脱警告:
options(install.packages.check.source = FALSE)
另外,当我打开 devtools 库时,我注意到了这个警告:
WARNING: Rtools 3.0 found on the path at c:/Rtools is not compatible with R 3.0.1.
这很奇怪,Rtools 3.0 应该从 R >2.15.1 到 R 3.0.x 都很好
有什么想法吗?