Displaying 3 results from an estimated 3 matches for "setrlibs".
2020 Mar 19
2
R CMD check --as-cran attempts to hide R_LIBS_USER but fails
...quot;
give the same output as:
$ R_LIBS_USER="no_such_dir" Rscript --vanilla -e ".libPaths()"
[1] "/home/hb/software/R-devel/trunk/lib/R/library"
?
The long version:
R_LIBS_SITE='no_such_dir' and R_LIBS_USER='' is set up at the very
end of tools:::setRlibs():
setRlibs <-
...
c(paste0("R_LIBS=", rlibs),
if(WINDOWS) " R_ENVIRON_USER='no_such_file'" else "R_ENVIRON_USER=''",
if(WINDOWS) " R_LIBS_USER='no_such_dir'" else "R_LIBS_USER=''",
"...
2020 Mar 19
1
R CMD check --as-cran attempts to hide R_LIBS_USER but fails
...no_such_dir" Rscript --vanilla -e ".libPaths()"
> | [1] "/home/hb/software/R-devel/trunk/lib/R/library"
> |
> | ?
> |
> | The long version:
> |
> | R_LIBS_SITE='no_such_dir' and R_LIBS_USER='' is set up at the very
> | end of tools:::setRlibs():
> |
> | setRlibs <-
> | ...
> | c(paste0("R_LIBS=", rlibs),
> | if(WINDOWS) " R_ENVIRON_USER='no_such_file'" else "R_ENVIRON_USER=''",
> | if(WINDOWS) " R_LIBS_USER='no_such_dir'" else "...
2020 Mar 19
0
R CMD check --as-cran attempts to hide R_LIBS_USER but fails
...output as:
|
| $ R_LIBS_USER="no_such_dir" Rscript --vanilla -e ".libPaths()"
| [1] "/home/hb/software/R-devel/trunk/lib/R/library"
|
| ?
|
| The long version:
|
| R_LIBS_SITE='no_such_dir' and R_LIBS_USER='' is set up at the very
| end of tools:::setRlibs():
|
| setRlibs <-
| ...
| c(paste0("R_LIBS=", rlibs),
| if(WINDOWS) " R_ENVIRON_USER='no_such_file'" else "R_ENVIRON_USER=''",
| if(WINDOWS) " R_LIBS_USER='no_such_dir'" else "R_LIBS_USER=''",...