Description Usage Arguments Value
R functions for managing Python condaenvironments.
1 2 3 4 5 6 7 8 9 10 11 12 | conda_list(conda = "auto")
conda_create(envname, packages = "python", conda = "auto")
conda_remove(envname, packages = NULL, conda = "auto")
conda_install(envname, packages, forge = TRUE, pip = FALSE,
pip_ignore_installed = TRUE, conda = "auto")
conda_binary(conda = "auto")
conda_version(conda = "auto")
|
conda |
Path to conda executable (or "auto" to find conda using the PATH and other conventional install locations). |
envname |
Name of conda environment |
packages |
Character vector with package names to install or remove. |
forge |
Include the Conda Forge repository. |
pip |
|
pip_ignore_installed |
Ignore installed versions when using pip. This is |
conda_list()
returns a data frame with the names and paths to the
respective python binaries of available environments. conda_create()
returns the Path to the python binary of the created environment.
conda_binary()
returns the location of the main conda binary or NULL
if none can be found.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.