conda-tools {reticulate}R Documentation

Interface to conda utility commands

Description

Interface to conda utility commands

Usage

conda_list(conda = "auto")

conda_create(envname, packages = "python", conda = "auto")

conda_remove(envname, packages = NULL, conda = "auto")

conda_install(envname, packages, pip = FALSE, conda = "auto")

conda_binary(conda = "auto")

conda_version(conda = "auto")

Arguments

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.

pip

TRUE to use pip (defaults to FALSE)

Value

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.


[Package reticulate version 1.0 Index]