Skip to content

Commit

Permalink
Merge pull request #1370 from pyiron/use_conda_as_default
Browse files Browse the repository at this point in the history
Switch to use conda as default
  • Loading branch information
jan-janssen authored Mar 12, 2024
2 parents 4a40bd0 + a3ca42f commit d99259d
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 d99259d

Please sign in to comment.