R/install.R

Defines functions install_pygrok

Documented in install_pygrok

#' Install pygrok
#'
#' @param method Installation method, passed to py_install
#' @param conda Path to conda, passed to py_install
#'
#' @export install_pygrok
#'
#' @return Invisible `NULL`, called for side effects
#'
#' @examples
#' \dontrun{
#' install_pygrok()
#' }
install_pygrok <- function(method = "auto", conda = "auto") {
  reticulate::py_install("pygrok", method = method, conda = conda, pip = TRUE)
  invisible(NULL)
}
ellisvalentiner/grokr documentation built on Jan. 1, 2021, 12:16 a.m.