install_local {devtools}R Documentation

Install a package from a local file

Description

This function is vectorised so you can install multiple packages in a single command.

Usage

install_local(path, subdir = NULL, ..., quiet = FALSE)

Arguments

path

path to local directory, or compressed file (tar, zip, tar.gz tar.bz2, tgz2 or tbz)

subdir

subdirectory within url bundle that contains the R package.

...

Other arguments passed on to install.

quiet

if TRUE suppresses output from this function.

Examples

## Not run: 
dir <- tempfile()
dir.create(dir)
pkg <- download.packages("testthat", dir, type = "source")
install_local(pkg[, 2])

## End(Not run)

[Package devtools version 1.13.6 Index]