Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

backports 1.1.1 package fails to install

Tags:

r

I am unable to public my R notebook. When I try to publish, I get the following error:

Console~/

Console
R Markdown

    .../R Test 1/Fall Programming with R Test 1.Rmd     
Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : 
  there is no package called 'backports'
Calls: :: ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted

I tried to install backports, but it doesn't seem to work either. I get this error when I try to install backports:

> install.packages("backports")
Installing package into ‘C:/Users/agdpa/Documents/R/win-library/3.4’
(as ‘lib’ is unspecified)

  There is a binary version available but the source version is later:
          binary source needs_compilation
backports  1.1.0  1.1.1             FALSE

installing the source package ‘backports’

trying URL 'https://cran.rstudio.com/src/contrib/backports_1.1.1.tar.gz'
Content type 'application/x-gzip' length 10090 bytes
downloaded 10090 bytes

* installing *source* package 'backports' ...
** package 'backports' successfully unpacked and MD5 sums checked
** libs

*** arch - i386
Warning: running command 'make -f "C:/PROGRA~1/R/R-34~1.1/etc/i386/Makeconf" -f "C:/PROGRA~1/R/R-34~1.1/share/make/winshlib.mk" SHLIB="backports.dll" OBJECTS="dotsElt.o dotsLength.o init.o"' had status 127
ERROR: compilation failed for package 'backports'
* removing 'C:/Users/agdpa/Documents/R/win-library/3.4/backports'
Warning in install.packages :
  running command '"C:/PROGRA~1/R/R-34~1.1/bin/x64/R" CMD INSTALL -l "C:\Users\agdpa\Documents\R\win-library\3.4" C:\Users\agdpa\AppData\Local\Temp\Rtmp8IcAL2/downloaded_packages/backports_1.1.1.tar.gz' had status 1
Warning in install.packages :
  installation of package ‘backports’ had non-zero exit status
like image 626
Agarp Avatar asked Sep 26 '17 01:09

Agarp


2 Answers

I'm getting a similar error with the backports R package. It's preventing the devtools package from installing a customised package which I've written.

I fixed it by installing the previous version of backports:

require(devtools)
install_version("backports", version = "1.1.0")
like image 104
lebelinoz Avatar answered Oct 20 '22 10:10

lebelinoz


I solved it reinstalling Rtools (I'm running of Windows).

like image 23
jgarces Avatar answered Oct 20 '22 10:10

jgarces