Skip to content

Commit

Permalink
Switch to use conda as default
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jan-janssen authored Mar 12, 2024
1 parent 4a40bd0 commit a3ca42f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiron_base/project/condaenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit a3ca42f

Please sign in to comment.