Configure Python / reticulate for soilVAE
Usage
vae_configure(python = NULL, venv = NULL, conda = NULL)
Arguments
- python
Path to python executable (optional).
- venv
Name of virtualenv to use (optional).
- conda
Name of conda env to use (optional).
Examples
if (FALSE) { # \dontrun{
# Let reticulate auto-detect Python
vae_configure()
# Or point to an existing virtual environment
vae_configure(venv = "r-soilvae")
} # }