R/local_install.r

Defines functions local_install

Documented in local_install

#' @title Install a local package
#' @description ...because I can NEVER remember what parameter choice I need
#' to make to make \code{install.packages} work...
#' @param path path to local package
#' @export

local_install <- function(path){
   utils::install.packages(
      pkgs=path,
      repos=NULL,
      type="source"
   )
}
renlund/proh documentation built on March 25, 2023, 10:07 a.m.