BMR icon indicating copy to clipboard operation
BMR copied to clipboard

Issue Installing BMR

Open mkjohnman opened this issue 5 years ago • 2 comments

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.

BMR Installation Error Output

Thanks in advance! Really appreciate any advice you can provide.

mkjohnman avatar Jun 13 '19 06:06 mkjohnman

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.

gueyenono avatar Dec 09 '19 20:12 gueyenono

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")

bdemeshev avatar Sep 29 '20 05:09 bdemeshev