File size: 466 Bytes
71687cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""Dynamic installer loading."""
import importlib
from ...exceptions import InvalidInstaller
def get_installer(name):
"""
Gets the installer for the given environment.
Raises: InvalidInstaller if unable to load installer
"""
try:
return importlib.import_module(f"conda.env.installers.{name}")
except ImportError:
raise InvalidInstaller(name)
|