renv::use() is described as "a useful way of sharing standalone R scripts", specifically Rmd and Qmd documents. However, the presence of renv:: suggests that the scripts will not knitr or render unless renv is already installed, is that correct? If so, how can this be done in a standalone way, without requiring other files to bootstrap the installation of renv?
EDIT: For now I've added
if(!("renv" %in% installed.packages())) install.packages("renv", repos= "https://cloud.r-project.org")
This seems to work.