Skip to content

Commit

Permalink
#345 workaround incompatibility between recent conda change and mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
sapetnioc committed Aug 23, 2023
1 parent a518d88 commit 81d51c4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup/conda/setup_conda
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,15 @@ if [ -e "$CONDA/bin/mamba" ]; then
# If mamba is installed
export conda="$CONDA/bin/mamba"
export conda_install="-y"

# Due to an incompatibility between conda an mamba (seen on August 23th, 2023),
# force the version of conda until a patch is released on mamba (code is already
# patched on github, current mamba version is 1.4.9).
"$conda" install 'conda=23.5.2'
"$conda" update -y mamba
# "$conda" update -y conda mamba

# Use most recent glibc ABI (the one used by conda-forge to compile Qt)
"$conda" update -y conda mamba
"$conda" install -y sysroot-conda_2_28-x86_64
else
# mamba is not installed
Expand Down

0 comments on commit 81d51c4

Please sign in to comment.