Can I install a package without installing dependencies?
When executing the following command:
install.packages("package",dependencies=FALSE)
if the dependencies are not installed in advance, does the package installation fail?
My question comes from this post Install local package R with CRAN mirror dependencies . Why does it install a local package installation without installing dependencies?
if I set repos = NULL, it correctly tries to install the local package file (as documented), but obviously it does not find package dependencies.
Thanks!
source share