#' Install python packages required by package
#'
#' Creates virtualenv with name revigo and installs numpy, werkzeug, and robobrowser
#'
#' @return
#' @export
#'
setup_env <- function() {
reticulate::virtualenv_create('revigo')
reticulate::virtualenv_install(envname = 'revigo',
packages = c('numpy', 'werkzeug', 'robobrowser'),
ignore_installed = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.