BMR
BMR copied to clipboard
Issue Installing BMR
Hi,
I'm trying to install the package and keep running into an error. Have had a look around online and am not quite sure how to address it. I've attached a picture of the error output.
Thanks in advance! Really appreciate any advice you can provide.
This is how I managed to install it on Windows. If you do not know how to set environment variables on Windows, you will need to do it.
Set the following environment variables:
RREMOTES_STANDALONE=true R_REMOTES_NO_ERRORS_FROM_WARNINGS=true _R_CHECK_FORCE_SUGGESTS=false
Finally, install the BMR package witht he following command:
remotes::install_github("kthohr/BMR", INSTALL_opts="--no-multiarch")
Hope this helps.
That worked on windows with R 3.6:
Sys.setenv(RREMOTES_STANDALONE="true")
Sys.setenv(R_REMOTES_NO_ERRORS_FROM_WARNINGS="true")
Sys.setenv(R_CHECK_FORCE_SUGGESTS="false")
devtools::install_github("kthohr/BMR", INSTALL_opts="--no-multiarch")