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

Commit

Permalink
Merge pull request #1225 from cbworden/fix_install
Browse files Browse the repository at this point in the history
Adopt Mike's fixes to the conda/mamba incompatibilities.
  • Loading branch information
cbworden authored Jun 21, 2022
2 parents 800a67f + 0154599 commit 680fce1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fi

echo "Installing mamba from conda-forge"

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

echo "Installing packages from conda-forge"

Expand Down Expand Up @@ -210,7 +210,7 @@ conda config --add channels 'defaults'
conda config --set channel_priority flexible

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

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

0 comments on commit 680fce1

Please sign in to comment.