You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building custom runtimes using mlserver build is fantastic but also leverages conda and some of our builds have been known to take up to 8 hours due to the conda standard resolver taking so long to resolve the environment. An improvement has already been developed by conda: the libmamba resolver.
Building custom runtimes using
mlserver build
is fantastic but also leverages conda and some of our builds have been known to take up to 8 hours due to the conda standard resolver taking so long to resolve the environment. An improvement has already been developed by conda: the libmamba resolver.Details can be found here: https://www.anaconda.com/blog/a-faster-conda-for-a-growing-community
But the highlights:
conda update -n base conda
)conda install -n base conda-libmamba-solver
conda config --set solver libmamba
The text was updated successfully, but these errors were encountered: