rtools

Install_package does not find Rtools after rtools35 has been updated in latest R update

我与影子孤独终老i 提交于 2019-12-23 05:43:14
问题 devtools::install_github(repo) keeps installing rtools35.exe I try installing a new author account repository from 'author/newrepo'and keep getting R wants to install new buildtoools message. Then the installation exits. Rtools35.exe installation has already been completed. I am using older version of R (3.5.0) currentlyy because RTools is not available for the 3.5.1 update `devtools::install_github(repo)` Downloading bitbucket repo author/repo@master trying URL 'https://cran.rstudio.com/bin

sh.exe is preventing windows cmd move command from working

岁酱吖の 提交于 2019-12-22 11:25:14
问题 I am running an old application called ACSLX . It is trying to call a DOS move command, but because sh.exe is in my path, I am getting an error. sh.exe is part of Git and also RTools , both of which I have installed. As you can see it is simply trying to move a file, but this is failing. How can I prevent this? This is the console output of ACSLX when I try to build the "Spring" example project. ##### Build starting... C:\acslX\ShSysTime.exe Current System Time 15:05:02 "C:\acslX\atrans.exe"

No RTools compatible with R version 3.5.0 was found

橙三吉。 提交于 2019-12-17 07:30:38
问题 I had problems installing data.table for R version 3.5.0, and was advised to check that RTools was properly installed. After installing RTools 3.5 (this seems to be the latest) I typed find_rtools(T) I got the following message: WARNING: Rtools is required to build R packages, but no version of Rtools compatible with R 3.5.0 was found. (Only the following incompatible version(s) of Rtools were found:3.4,3.5) Please download and install the appropriate version of Rtools from http://cran.r

R not recognizing GSL library undefined references

南楼画角 提交于 2019-12-11 19:51:36
问题 I am installing a package from github in R (link here: https://github.com/aliceyiwang/mvabund), using devtools. I have installed Rtools, using the instructions for another package (here: https://cran.r-project.org/web/packages/dynr/vignettes/InstallationForUsers.pdf) and all the checks there indicate that GSL and RTools are installed properly. I've set the Windows system environment variables LIB_GSL (as "C:/R/local323" ) and PATHS (as "C:/RTools/bin/", "C:/RTools/mingw_64/bin", "C:/R/R-3.5.1

sh.exe is preventing windows cmd move command from working

馋奶兔 提交于 2019-12-06 11:42:01
I am running an old application called ACSLX . It is trying to call a DOS move command, but because sh.exe is in my path, I am getting an error. sh.exe is part of Git and also RTools , both of which I have installed. As you can see it is simply trying to move a file, but this is failing. How can I prevent this? This is the console output of ACSLX when I try to build the "Spring" example project. ##### Build starting... C:\acslX\ShSysTime.exe Current System Time 15:05:02 "C:\acslX\atrans.exe" -lic_path "C:\acslX\license.lic;C:\acslX\*.lic" -no_xsl -no_compile -no_link "C:\acslX\Examples\MODELD

Is Rtools incompatible with R version 3.5.1? [duplicate]

匆匆过客 提交于 2019-12-03 16:36:42
问题 This question already has an answer here : Install Rtools on R version 3.0.2 (1 answer) Closed 26 days ago . I have tried install.packages("Rtools") , but this provides an error that states package ‘Rtools’ is not available (for R version 3.5.1) Given that the latest version of R is just a week old, should I wait for the R developers to catch up, or is this a bug I should report? 回答1: No, I think it's related to devtools . You can check that devtools:::version_info is lacking 3.5 . You could

Is Rtools incompatible with R version 3.5.1?

感情迁移 提交于 2019-12-03 05:47:07
I have tried install.packages("Rtools") , but this provides an error that states package ‘Rtools’ is not available (for R version 3.5.1) Given that the latest version of R is just a week old, should I wait for the R developers to catch up, or is this a bug I should report? No, I think it's related to devtools . You can check that devtools:::version_info is lacking 3.5 . You could use this as a workaround: library(devtools) assignInNamespace("version_info", c(devtools:::version_info, list("3.5" = list(version_min = "3.3.0", version_max = "99.99.99", path = "bin"))), "devtools") Now your install