Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pass .libPaths() as R_LIBS to quarto subprocess #228

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open

Conversation

cderv
Copy link
Collaborator

@cderv cderv commented Mar 17, 2025

Related to

This package is using processx::run() and not callr::r() to trigger the subprocess.

Environment variables are inherited by default, but if .libPaths() is modified during the R session before calling quarto_render(), this is unknown to the R process in Quarto processing.

This PR insures that by default .libPaths() is passed to the subprocess through R_LIBS environment variable.

This way, temporary install of the package, like with pkgdown or Quarto vignettes should not fail.

@hadley
Copy link

hadley commented Mar 24, 2025

It'd be worth double checking for other env vars that callr sets but processx doesn't.

@cderv
Copy link
Collaborator Author

cderv commented Mar 24, 2025

Yeah I didn't want to just copy callr which aims to be more generic. Other env vars are the following

> callr:::setup_context
function (options) 
{
    repos <- libpath <- system_profile <- user_profile <- load_hook <- NULL
    make_path <- function(x) paste(x, collapse = .Platform$path.sep)
    options <- within(options, {
        profiles <- make_profiles(system_profile, user_profile, 
            repos, libpath, load_hook, env)
        tmp_files <- c(tmp_files, profiles)
        envs <- make_environ(profiles, libpath, env)
        tmp_files <- c(tmp_files, envs)
        save_env <- c("R_ENVIRON", "R_ENVIRON_USER", "R_PROFILE", 
            "R_PROFILE_USER", "R_LIBS", "R_LIBS_USER", "R_LIBS_SITE")
        keep_set <- save_env %in% names(env)
        save_set <- !keep_set & save_env %in% names(Sys.getenv())
        save_nms <- paste0("CALLR_", save_env, "_BAK")
        env[save_nms[keep_set]] <- env[save_env[keep_set]]
        env[save_nms[save_set]] <- Sys.getenv(save_env[save_set])
        env <- env[setdiff(names(env), save_nms[!keep_set & !save_set])]
        if (is.na(env["R_ENVIRON"])) 
            env["R_ENVIRON"] <- envs[[1]]
        if (is.na(env["R_ENVIRON_USER"])) 
            env["R_ENVIRON_USER"] <- envs[[2]]
        if (is.na(env["R_PROFILE"])) 
            env["R_PROFILE"] <- profiles[[1]]
        if (is.na(env["R_PROFILE_USER"])) 
            env["R_PROFILE_USER"] <- profiles[[2]]
        if (is.na(env["R_LIBS"])) 
            env["R_LIBS"] <- make_path(libpath)
        if (is.na(env["R_LIBS_USER"])) 
            env["R_LIBS_USER"] <- make_path(libpath)
        if (is.na(env["R_LIBS_SITE"])) 
            env["R_LIBS_SITE"] <- make_path(.Library.site)
        env["CALLR_IS_RUNNING"] <- "true"
    })
    call_user_hooks(options)
}

So there is also R_LIBS_USER and R_LIBS_SITE, but it seems to be useful in very specific situation where a user would modify them inside a R session before calling quarto_render... It seems R_LIBS was enough for the current situation.

R_PROFILE_USER / R_PROFILE and R_ENVIRON_USER / R_ENVIRON are related to R Startup. I try to think of situation where those would be modified in an R session and I did find any compelling. As those R startup env, they would be set already outside, and quarto_render would pick them up.

They could be helpful to modify startup behavior of R by Quarto inside quarto_render(). I wanted to wait for use case before doing that.

So R_LIBS seemed the obvious one. Though I still need to understand and fix the problem on Windows CI.

@hadley
Copy link

hadley commented Mar 24, 2025

That analysis makes sense to me!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants