Install error when install R package from github -
i try install r package multidplyr
(which not available cran) github. followed this link.
i first install.packages("devtools")
, library(devtools)
, devtools::install_github("hadley/multidplyr")
. generates error message
downloading github repo hadley/multidplyr@master url https://api.github.com/repos/hadley/multidplyr/zipball/master installing multidplyr "c:/progra~1/r/r-34~1.1/bin/x64/r" --no-site-file --no-environ --no-save -- no-restore --quiet cmd install \ "c:/users/ftxx/appdata/local/temp/rtmpepoem9/devtools34805943869/hadley-multidplyr-0085ded" \ --library="c:/users/ftxx/documents/r/win-library/3.4" --install-tests installation failed: command failed (65535)
how fix problem? found if package on cran, system has no problem install.packages("abc")
, long needs install packages github, has problem. tried install other packages github, has same problem.
i've followed this instructions installed rtools
(latest version). however, problem of install packages github still there. , found this instruction first download source zip package multidplyr-master.zip
, unzip local folder r packages stored , run
source <- devtools:::source_pkg("c:/users/ftxx/documents/r/win- library/3.4/multidplyr-master") install(source)
however, reports similar error
installing multidplyr "c:/progra~1/r/r-34~1.1/bin/x64/r" --no-site-file --no-environ --no-save -- no-restore --quiet cmd install \ "c:/users/ftxx/documents/r/win-library/3.4/multidplyr-master" \ --library="c:/users/ftxx/documents/r/win-library/3.4" --install-tests error: command failed (65535)
my r information is
r.version _ platform x86_64-w64-mingw32 arch x86_64 os mingw32 system x86_64, mingw32 status major 3 minor 4.1 year 2017 month 06 day 30 svn rev 72865 language r version.string r version 3.4.1 (2017-06-30) nickname single candle
Comments
Post a Comment