install.dependencies {pkgmaker} | R Documentation |
Install all dependencies from a package source directory or package source file.
install.dependencies(pkg = NULL, all = FALSE, ..., dryrun = FALSE)
pkg |
package path or source file |
all |
logical that indicates if 'Suggests' packages should be installed. |
... |
extra arguments passed to
|
dryrun |
logical that indicates if the packages should be effectively installed or only shown. |
try( install.dependencies('Matrix', dryrun=TRUE) ) ## Not run: install.dependencies("mypackage_1.0.tar.gz", dryrun=TRUE) ## End(Not run)