Reputation: 361
I have R Studio(and R of course) and am aiming to use the Rcpp package.I am using a windows machine.
And I get an error message
The application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information
Also a pop-up alert comes out stating
R Session Aborted. R encountered a fatal error. The session was terminated.
By running library(rcpp) and sessionInfo() I get version information
R version 3.3.1 (2016-06-21)
Platform: i386-w64-mingw32/i386 (32-bit)
Running under: Windows >= 8 x64 (build 9200)
locale:
[1] LC_COLLATE=English_Malaysia.1252 LC_CTYPE=English_Malaysia.1252
[3] LC_MONETARY=English_Malaysia.1252 LC_NUMERIC=C
[5] LC_TIME=English_Malaysia.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] Rcpp_0.12.6
loaded via a namespace (and not attached):
[1] tools_3.3.1
Can anyone tell me what is wrong and how can I fix it?
Upvotes: 0
Views: 1568
Reputation: 20746
Two issues:
The path should have:
c:\Rtools\bin;
c:\Rtools\mingw_32\bin;
For more help on install Rtools correctly, please see this guide:
http://thecoatlessprofessor.com/programming/rcpp/install-rtools-for-rcpp/
Upvotes: 1
Reputation: 21285
This is a bad interaction between RStudio and R 3.3.x on Windows, arising from a bad interaction with RStudio + the new compiler toolchain used to build R on Windows.
There are a couple solutions:
Install the preview release of RStudio: https://www.rstudio.com/products/rstudio/download/preview/
Switch to the 64bit version of R,
Roll back to R 3.2.x.
Upvotes: 0
Reputation: 41
I had exactly the same problem on a 32-bit OS with Windows 7. I solved it by using an earlier version of R: R 3.2.5
Upvotes: 0