Nothing
#' Retrieve Micromamba Installed Path
#'
#' Checks if user already have `micromamba` binaries available on `PATH`.
#'
#' @keywords internal
#' @noRd
micromamba_user_installed <- function() {
umamba_bin_path <- Sys.which("micromamba")
if (isTRUE(umamba_bin_path == "")) {
umamba_bin_path <- Sys.which("micromamba.exe")
}
if (isTRUE(umamba_bin_path == "")) {
return(invisible(umamba_bin_path))
}
umamba_bin_path <- normalizePath(umamba_bin_path, mustWork = FALSE)
return(fs::path(umamba_bin_path))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.