我正在使用Rstudio开发R包。到目前为止,我使用的是R 3.1.2并且一切正常。最近我更新了R到3.2.0版本,我也更新了包。现在,在加载devtools时:
> library(devtools)
Error in inDL(x, as.logical(local), as.logical(now), ...) :
unable to load shared object 'C:/Documents and Settings/cruiz.CREAL/Mis documentos/R/win-library/3.2/git2r/libs/i386/git2r.dll':
LoadLibrary failure: No se encontró el proceso especificado.
Error: package or namespace load failed for ‘devtools’
我已经使用biocLite和install.packages重新安装了devtools和git2r,但它没有用。此文件已存在且位于此路径上。
我的R会话信息:
R version 3.2.0 (2015-04-16)
Platform: i386-w64-mingw32/i386 (32-bit)
Running under: Windows XP (build 2600) Service Pack 3
locale:
[1] LC_COLLATE=Spanish_Spain.1252 LC_CTYPE=Spanish_Spain.1252
[3] LC_MONETARY=Spanish_Spain.1252 LC_NUMERIC=C
[5] LC_TIME=Spanish_Spain.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] tools_3.2.0
非常感谢!
答案 0 :(得分:1)
我建议如下:
remove.packages(c("git2r", "devtools", "rversions"))
。
使用我在这篇文章的答案中提供的信息 - R - Error installing Devtools in Windows重新安装devtools。这也应该重新安装所需的依赖项。