gh_install_packages {githubinstall} | R Documentation |
Install Packages from GitHub
Description
Install Packages from GitHub
Usage
gh_install_packages(packages, ask = TRUE, ref = "master",
build_vignettes = FALSE, dependencies = NA, verbose = TRUE,
quiet = !verbose, lib = NULL, ...)
githubinstall(packages, ask = TRUE, ref = "master",
build_vignettes = FALSE, dependencies = NA, verbose = TRUE,
quiet = !verbose, lib = NULL, ...)
Arguments
packages |
character vector of the names of the packages.
You can specify |
ask |
logical. Indicates ask to confirm before install. |
ref |
character vector. Desired git reference.
Could be a commit, tag, or branch name, or a call to |
build_vignettes |
logical. If |
dependencies |
logical. Indicating to also install uninstalled packages which the packages depends on/links to/suggests.
See argument dependencies of |
verbose |
logical. Indicating to print details of package building and installation. Dfault is |
quiet |
logical. Not |
lib |
character vector giving the library directories where to install the packages.
Recycled as needed. Defaults to the first element of |
... |
additional arguments to control installation of package, passed to |
Details
githubinstall()
is an alias of gh_install_packages()
.
Value
TRUE if success.
Examples
## Not run:
gh_install_packages("AnomalyDetection")
githubinstall("AnomalyDetection")
## End(Not run)