2015-05-13 45 views
1

我正在用Rstudio開發R包。到現在爲止,我使用R 3.1.2並且一切正常。最近我更新了R到3.2.0版本,我也更新了軟件包。現在,加載devtools時:我無法在R中加載devtools 3.2.0

> 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’ 

我重新安裝devtools和git2r與biocLite與install.packages並沒有奏效。這個文件已經存在,並且在這個路徑上。

我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 

非常感謝您!

回答