Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit 680fce1

Browse files
authored
Merge pull request #1225 from cbworden/fix_install
Adopt Mike's fixes to the conda/mamba incompatibilities.
2 parents 800a67f + 0154599 commit 680fce1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ fi
112112

113113
echo "Installing mamba from conda-forge"
114114

115-
conda install mamba -y -n base -c conda-forge
115+
conda install "mamba<=0.23.3" -y -n base -c conda-forge
116116

117117
echo "Installing packages from conda-forge"
118118

@@ -210,7 +210,7 @@ conda config --add channels 'defaults'
210210
conda config --set channel_priority flexible
211211

212212
echo "Creating the $VENV virtual environment:"
213-
mamba create -y -n $VENV ${package_list[*]}
213+
mamba create -y -n $VENV ${package_list[*]} -c conda-forge --strict-channel-priority
214214

215215
# Bail out at this point if the conda create command fails.
216216
# Clean up zip files we've downloaded

0 commit comments

Comments
 (0)