aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2023-12-10 00:37:06 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2023-12-10 00:37:06 -0500
commite46df1806ae35798ac2b72a8f3b24525abfb9f50 (patch)
tree6520e47cc8cc7c4a7d7f39ac02d50e9ba3dd7e4c
parent5ee11baa2b388e5fa69314cd3541abadfbce3b50 (diff)
downloadstasis-e46df1806ae35798ac2b72a8f3b24525abfb9f50.tar.gz
Set solver to libmamba by default
-rw-r--r--src/conda.c1
1 files changed, 1 insertions, 0 deletions
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");