View source: R/FRR_BuildBackend.R
build_backend | R Documentation |
A function to build the environment for fastrerandomize. Builds a conda environment in which 'JAX' and 'np' are installed. Users can also create a conda environment where 'JAX' and 'np' are installed themselves.
build_backend(conda_env = "fastrerandomize", conda = "auto")
conda_env |
(default = |
conda |
(default = |
Invisibly returns NULL; this function is used for its side effects
of creating and configuring a conda environment for fastrerandomize
.
This function requires an Internet connection.
You can find out a list of conda Python paths via: Sys.which("python")
## Not run:
# Create a conda environment named "fastrerandomize"
# and install the required Python packages (jax, numpy, etc.)
build_backend(conda_env = "fastrerandomize", conda = "auto")
# If you want to specify a particular conda path:
# build_backend(conda_env = "fastrerandomize", conda = "/usr/local/bin/conda")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.