kube_install_single_package.Rd
Install and create binaries for R packages.
kube_install_single_package(pkg, lib_path, bin_path, logs_path)
character() name of R or Bioconductor package.
character() path where R package libraries are stored.
character() path where R package binaries are stored.
character() path where R package binary build logs are stored.
`kube_install_single_package()` returns invisibly.
The package given by `pkg` is installed in the given library path `lib_path`, and the binaries are created in the `bin_path`.
if (FALSE) {
kube_install_single_package(
pkg = 'AnVIL',
lib_path = "/host/library",
bin_path = "/host/binaries"
)
}