How to tell CRAN to install package dependencies automatically?

On your own system, try install.packages(“foo”, dependencies=…) with the dependencies= argument is documented as dependencies: logical indicating to also install uninstalled packages which these packages depend on/link to/import/suggest (and so on recursively). Not used if ‘repos = NULL’. Can also be a character vector, a subset of ‘c(“Depends”, “Imports”, “LinkingTo”, “Suggests”, “Enhances”)’. Only supported if … Read more