justinstall {just.install} | R Documentation |
simply install packages
Description
Simple utility to install packages from a number of sources. It only install if it not present already. It does not attach any packages, existing or to be installed.
Usage
justinstall(to_install)
Arguments
to_install |
tibble or data.frame with packages to install (see vignette for details) |
Value
no output
Examples
## Not run:
to_install <- tibble::tibble(package=c("tidyverse","ochRe","customthemes"),
source=c("CRAN","Github","r-universe"),
url=c("","ropenscilabs/ochRe","https://carlosyanez.r-universe.dev"))
just.install::justinstall(to_install)
## End(Not run)
[Package just.install version 1.0.2 Index]