I am trying to install the ‘rethinking’ package following these instructions: GitHub - rmcelreath/rethinking: Statistical Rethinking course and book package.
I cannot run rstan without my session encountering a fatal error and aborting.
I have a new laptop (windows10, R 4.2.1) and transferred my R library from old computer (windows10, R4.1.0). This has worked successfully for other packages, but I believe this has caused some issues for stan. I’m not sure how to set things straight.
I uninstalled rethinking, rStan, StanHeaders, devTools, rstantools, packages, but there may be some dependencies that I missed.
I installed Rtools42 and check the configuration re the
Sys.getenv("BINPREF")
[1] ""
I have used the repo to try to install packages and restart the R session after I remove a package before trying to install it again.
remove.packages(c("StanHeaders", "rstan"))
install.packages("StanHeaders", repos = c("https://mc-stan.org/r-packages/", getOption("repos")))
install.packages("rstan", repos = c("https://mc-stan.org/r-packages/", getOption("repos")))
After installing rstan and StanHeaders, I get this for the Makevars:
#writeLines(readLines(file.path(Sys.getenv("HOME"), ".R/Makevars")))
Error in file(con, "r") : cannot open the connection
In addition: Warning message:
In file(con, "r") :
cannot open file 'C:/Users/myName/OneDrive - myOrg/Documents/.R/Makevars': No such file or directory
#devtools::session_info("rstan")
Error in loadNamespace(x) : there is no package called ‘devtools’
^the first result is the same message I get on my old laptop that doesn’t abort and runs stan. The second, makes sense since I removed the devtools package.