devtools (version 1.10.0)

install_deps: Install package dependencies if needed.

Description

Install package dependencies if needed.

Usage

install_deps(pkg = ".", dependencies = NA, threads = getOption("Ncpus",
  1), repos = getOption("repos"), type = getOption("pkgType"), ...,
  upgrade = TRUE, quiet = FALSE, force_deps = FALSE)

Arguments

pkg
package description, can be path or package name. See as.package for more information
dependencies
logical indicating to also install uninstalled packages which this pkg depends on/links to/suggests. See argument dependencies of install.packages.
threads
number of concurrent threads to use for installing dependencies. It defaults to the option "Ncpus" or 1 if unset.
repos
A character vector giving repositories to use.
type
Type of package to update. If "both", will switch automatically to "binary" to avoid interactive prompts during package installation.
...
additional arguments passed to install.packages.
upgrade
If TRUE, also upgrade any of out date dependencies.
quiet
if TRUE suppresses output from this function.
force_deps
whether to force installation of dependencies even if their SHA1 reference hasn't changed from the currently installed version.

Examples

Run this code
install_deps(".")

Run the code above in your browser using DataCamp Workspace