From a3ca42f57c92c7a2822541cb54871ffc100caba7 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Tue, 12 Mar 2024 08:20:35 -0500 Subject: [PATCH] Switch to use conda as default We require the `conda` package to be available, so we can expect that the `conda` executable is available but that does not mean that the `mamba` executable is available. --- pyiron_base/project/condaenv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyiron_base/project/condaenv.py b/pyiron_base/project/condaenv.py index b3de7b88f..e3192e6a9 100644 --- a/pyiron_base/project/condaenv.py +++ b/pyiron_base/project/condaenv.py @@ -21,7 +21,7 @@ def __getattr__(self, item): ) @staticmethod - def create(env_name, env_file, use_mamba=True): + def create(env_name, env_file, use_mamba=False): exe = "mamba" if use_mamba else "conda" subprocess.check_output( [exe, "env", "create", "-n", env_name, "-f", env_file, "-y"],