Error installing and running rcpp

后端 未结 4 1943
暗喜
暗喜 2021-01-12 04:24

I\'m pretty new to R so apologies for a stupid question. I\'m trying to get rcpp running but I\'m stuck in an endless loop of R asking me to re-install RTools.

I bro

相关标签:
4条回答
  • 2021-01-12 04:33

    In the end it was something a bit left-field. Inspired by the following post, I had a look at the ComSpec environment variable. Not quite sure how, but I had it set to "cmd.exe".

    Removing the double quotes, so it said cmd.exe, and then rebooting fixed everything.

    Thanks to all who've tried to help.

    0 讨论(0)
  • 2021-01-12 04:40

    Had the same endless loop issue when trying to install Twitter's BreakoutDetection (which is also written in cpp)

    fixed by executing the following

    Sys.setenv(PATH="%PATH%;C:/Rtools/gcc-4.6.3/bin;c:/Rtools/bin")
    

    and then answering "no" when presented with the following prompt:

    "Install Build Tools Compiling C/C++ code for R requires installation of additional build tools. Do you want to install the additional tools now?"

    Didn't try these actions independently so not sure if either on their own would have fixed the issue

    0 讨论(0)
  • 2021-01-12 04:49

    I found that ensuring all of these were in my path fixed it. I did this with RStudio closed; I didn't reboot after.

    C:\Program Files\R\R-3.1.3\bin\x64
    C:\Program Files\R\R-3.1.3\bin
    C:\RBuildTools\3.2\bin
    C:\RBuildTools\3.2\gcc-4.6.3\bin64
    C:\RBuildTools\3.2\gcc-4.6.3\bin
    C:\RBuildTools\3.2\gcc-4.6.3\i686-w64-mingw32\bin
    

    These are on my Win7-64bit computer. YMMV, and I'm mostly posting this to ensure others see it if they are having the same issue.

    0 讨论(0)
  • 2021-01-12 04:49

    I experienced the same problem, I fixed this problem by adding Rtools dir into env variables:

    Sys.setenv(BINPREF = "C:/Rtools/mingw_$(WIN)/bin/")
    
    0 讨论(0)
提交回复
热议问题