RENV
This is the documentation for the RENV dependency manager for R language
Dependencies
Setup
# R script for RENV dependency manager that creates package lock file
dependency.errors <- getOption("renv.config.dependency.errors")
install.transactional <- getOption("renv.config.install.transactional")
snapshot.validate <- getOption("renv.config.snapshot.validate")
options(renv.config.dependency.errors = "ignore")
options(renv.config.install.transactional = FALSE)
options(renv.config.snapshot.validate = FALSE)
renv::init(
settings = list(snapshot.type = "explicit")
)
renv::snapshot(force=TRUE, type="explicit")
options(renv.config.dependency.errors = dependency.errors)
options(renv.config.install.transactional = install.transactional)
options(renv.config.snapshot.validate = snapshot.validate)Usage
Errors and Runtime Issues
Timeouts During Executing
Last updated
Was this helpful?