Switch to mambaforge

This commit is contained in:
Simon Li
2021-07-31 20:44:23 +01:00
parent 4a7e545973
commit 0018beca4f
3 changed files with 13 additions and 13 deletions

View File

@@ -94,7 +94,7 @@ def ensure_conda_packages(prefix, packages):
"""
Ensure packages (from conda-forge) are installed in the conda prefix.
"""
conda_executable = [os.path.join(prefix, 'bin', 'python'), '-m', 'conda']
conda_executable = [os.path.join(prefix, 'bin', 'mamba')]
abspath = os.path.abspath(prefix)
# Let subprocess errors propagate
# Explicitly do *not* capture stderr, since that's not always JSON!