#' 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.