install_github_packages: Install packages fom GitHub

Description Usage Arguments

View source: R/restore.R

Description

Install packages fom GitHub

Usage

1
2
install_github_packages(packages, dependencies = NA, quiet = T,
  force = F, lib = .libPaths()[1])

Arguments

packages

A string vector of names of packages (e.g. "dplyr").

dependencies

logical indicating whether to also install uninstalled packages which these packages depend on/link to/import/suggest (and so on recursively). Not used if repos = NULL. Can also be a character vector, a subset of c("Depends", "Imports", "LinkingTo", "Suggests", "Enhances"). Only supported if lib is of length one (or missing), so it is unambiguous where to install the dependent packages. If this is not the case it is ignored, with a warning. The default, NA, means c("Depends", "Imports", "LinkingTo"). TRUE means to use c("Depends", "Imports", "LinkingTo", "Suggests") for pkgs and c("Depends", "Imports", "LinkingTo") for added dependencies: this installs all the packages needed to run pkgs, their examples, tests and vignettes (if the package author specified them correctly). In all of these, "LinkingTo" is omitted for binary packages.

quiet

logical: if true, reduce the amount of output.

force

logical. Should package be installed if it already exists on local system?

lib

character vector giving the library directories where to install the packages. Recycled as needed. If missing, defaults to the first element of .libPaths().


pinusm/commuteR documentation built on Nov. 5, 2019, 12:51 a.m.