From e46df1806ae35798ac2b72a8f3b24525abfb9f50 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 10 Dec 2023 00:37:06 -0500 Subject: Set solver to libmamba by default --- src/conda.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/conda.c b/src/conda.c index 6f76e32..24a4862 100644 --- a/src/conda.c +++ b/src/conda.c @@ -170,6 +170,7 @@ void conda_setup_headless() { conda_exec("config --system --set always_yes true"); conda_exec("config --system --set rollback_enabled false"); conda_exec("config --system --set report_errors false"); + conda_exec("config --system --set solver libmamba"); if (globals.verbose) { char *rcfile = getenv("CONDARC"); -- cgit