devtools (version 0.8)

install: Install a local development package.

Description

Uses R CMD INSTALL to install the package. Will also try to install dependencies of the package from CRAN, if they're not already installed.

Usage

install(pkg = ".", reload = TRUE, quick = FALSE,
    args = NULL)

Arguments

pkg
package description, can be path or package name. See as.package for more information
reload
if TRUE (the default), will automatically reload the package after installing.
quick
if TRUE skips docs, multiple-architectures, and demos to make installation as fast as possible.
args
An optional character vector of additional command line arguments to be passed to R CMD install.

Details

Installation takes place on a copy of the package produced by R CMD build to avoid modifying the local directory in any way.

See Also

with_debug to install packages with debugging flags set.

Other package installation: install_bitbucket, install_github, install_gitorious, install_url, install_version