list_envs | R Documentation |
This function retrieves a list of Conda environments installed in the Condathis environment directory. The returned value excludes any environments unrelated to Condathis, such as the base Conda environment itself.
list_envs(verbose = "silent")
verbose |
A character string indicating the verbosity level for the command.
Defaults to |
A character vector containing the names of installed Conda environments. If the command fails, the function returns the process exit status as a numeric value.
## Not run:
condathis::with_sandbox_dir({
# Create environments
condathis::create_env(
packages = "fastqc",
env_name = "fastqc-env"
)
condathis::create_env(
packages = "python",
env_name = "python-env"
)
# List environments
condathis::list_envs()
#> [1] "fastqc-env" "python-env"
})
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.