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

Required dependencies that are not explicitly loaded #5

Open
gdurif opened this issue May 24, 2024 · 1 comment
Open

Required dependencies that are not explicitly loaded #5

gdurif opened this issue May 24, 2024 · 1 comment

Comments

@gdurif
Copy link
Contributor

gdurif commented May 24, 2024

Sometimes, some R packages are necessary for some code to work but not explicitly loaded in any notebook/scripts (for instance packages listed as dependency in Suggests field).

Example:

  • yaml package required by RStudio to read Quarto markdown (.qmd) file
  • farff package required to download some datasets on OpenML.org through the OpenML R package

So even after doing renv::install("this-package"), {this-package} will not be added to the renv.lock file as long as library(this-package) is not called somewhere.

It is possible to use renv::record("this-package") to manually add it to the renv.lock file but it will be removed by the next snapshot.

Per rstudio/renv#1018 the solution is to add a file deps.R containing as much library(.) call to load this type of required package that are never loaded, e.g.

library(yaml)
library(farff)
@gdurif
Copy link
Contributor Author

gdurif commented May 24, 2024

I will modify the template to document this specific case.

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

No branches or pull requests

1 participant