conda#

OS-agnostic, system-level binary package manager.

Functions#

conda_signal_handler(signum, frame)

Attributes#

__version__#
__name__ = 'conda'#
__author__ = 'Anaconda, Inc.'#
__email__ = 'conda@continuum.io'#
__license__ = 'BSD-3-Clause'#
__summary__#
__url__ = 'https://github.com/conda/conda'#
CONDA_PACKAGE_ROOT#
exception CondaError(message: str | None, caused_by: Any = None, **kwargs)#

Bases: Exception

Common base class for all non-exit exceptions.

Initialize self. See help(type(self)) for accurate signature.

return_code: int = 1#
reportable: bool = False#
__repr__() str#

Return repr(self).

__str__() str#

Return str(self).

dump_map() dict[str, Any]#
exception CondaMultiError(errors: collections.abc.Iterable[CondaError])#

Bases: CondaError

Common base class for all non-exit exceptions.

Initialize self. See help(type(self)) for accurate signature.

__repr__() str#

Return repr(self).

__str__() str#

Return str(self).

dump_map() dict[str, str | tuple[str, Ellipsis]]#
contains(exception_class: BaseException | tuple[BaseException]) bool#
exception CondaExitZero(message: str | None, caused_by: Any = None, **kwargs)#

Bases: CondaError

Common base class for all non-exit exceptions.

Initialize self. See help(type(self)) for accurate signature.

return_code = 0#
conda_signal_handler(signum: int, frame: Any)#