@conda_base
The @conda_base
decorator specifies what libraries should be made available for all steps of a flow.
The libraries are installed from Conda repositories. For more information, see Managing External Libraries.
from metaflow import conda_base
Specifies the Conda environment for all steps of the flow.
Use @conda_base
to set common libraries required by all
steps and use @conda
to specify step-specific additions.
Parameters
libraries: Dict[str, str], default: {}
Libraries to use for this flow. The key is the name of the package and the value is the version to use.
python: str, optional
Version of Python to use, e.g. '3.7.4'. A default value of None means to use the current Python version.
disabled: bool, default: False
If set to True, disables Conda.