Learn R Programming

icesTAF (version 3.6.0)

taf.install: TAF Install

Description

Install packages in tar.gz format in local TAF library.

Usage

taf.install(targz = NULL, lib = "bootstrap/library", quiet = FALSE)

Arguments

targz

a package filename, vector of filenames, or NULL.

lib

location of local TAF library.

quiet

whether to suppress messages.

Details

If targz = NULL, all packages found in bootstrap/software are installed, as long as they have filenames of the form package_sha.tar.gz containing a 7-character SHA reference code.

The default behavior of taf.install is to install packages in alphabetical order. When the installation order matters because of dependencies, the user can specify a vector of package filenames to install.

See Also

taf.bootstrap calls download.github and taf.install to download and install R packages.

taf.library loads a package from bootstrap/library.

clean.library selectively removes packages from the local TAF library.

install.packages is the underlying base function to install a package.

icesTAF-package gives an overview of the package.

Examples

Run this code
if (FALSE) {
# Install one package
taf.install("bootstrap/software/FLAssess_f1e5acb.tar.gz")

# Install all packages found in bootstrap/software
taf.install()
}

Run the code above in your browser using DataLab