Re: [R] Build command in library(devtools)

2016-07-24 Thread Rainer Hurling
I think, in your case the problem might be the version of Rtools. If you want to use R > 3.0.x, you also have to use newer versions of Rtools [1]. HTH, Rainer Hurling [1] https://cran.r-project.org/bin/windows/Rtools/ Am 21.07.16 um 02:24 schrieb Steven Yen: > Here is what I found. I had to

Re: [R] Build command in library(devtools)

2016-07-20 Thread Hadley Wickham
The first place to start is to make sure you have the latest version of devtools. If that doesn't work, please file an issue on devtools' GitHub. Hadley On Wednesday, July 20, 2016, Steven Yen wrote: > Here is what I found. I had to go back to as early as R 3.0.3 (March, >

Re: [R] Build command in library(devtools)

2016-07-20 Thread Steven Yen
Here is what I found. I had to go back to as early as R 3.0.3 (March, 2014) along with Rtools30.exe that works with that version of R, in order for devtools to work right. With other/later version of R, I end up building a package with library(devtools); build("yenlib",binary=F) with no error

Re: [R] Build command in library(devtools)

2016-07-20 Thread Duncan Murdoch
On 19/07/2016 10:06 PM, Steven Yen wrote: Thanks. I found the reason was Rtools does not run under the new version of R. I had to go back to as early as R 3.0.2 (September 2013) to make Rtools work. Any idea for a go-around? Thanks. Which version of Rtools are you using? Current Rtools is

Re: [R] Build command in library(devtools)

2016-07-19 Thread Steven Yen
Thanks. I found the reason was Rtools does not run under the new version of R. I had to go back to as early as R 3.0.2 (September 2013) to make Rtools work. Any idea for a go-around? Thanks. On 7/19/2016 4:38 PM, John McKown wrote: > On Tue, Jul 19, 2016 at 3:15 PM, Steven Yen

Re: [R] Build command in library(devtools)

2016-07-19 Thread John McKown
On Tue, Jul 19, 2016 at 3:15 PM, Steven Yen wrote: > I recently updated my R and RStudio to the latest version and now the > binary option in the "build" command in devtools stops working. > > I went around and used the binary=F option which worked by I get the > .tar.gz file

[R] Build command in library(devtools)

2016-07-19 Thread Steven Yen
I recently updated my R and RStudio to the latest version and now the binary option in the "build" command in devtools stops working. I went around and used the binary=F option which worked by I get the .tar.gz file instead of the .zip file which I prefer. Does anyone understand the following