Skip to content

Commit

Permalink
download miniforge instead of mambaforge (#60)
Browse files Browse the repository at this point in the history
I hope this will get us going. Ideally we would need to change all
occurrences of `MAMBAFORGE` with `MINIFORGE`. But this is a larger
surgery in multiple repos I think.
  • Loading branch information
bgruening authored Nov 3, 2024
1 parent 392641a commit ec7ec31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install-and-set-up-conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ else
BIOCONDA_ADDITIONAL_INSTALL_PKGS=""
fi

MAMBAFORGE_URL="https://github.com/conda-forge/miniforge/releases/download/${MAMBAFORGE_VER}/Mambaforge-${MAMBAFORGE_VER}-${OS}-${ARCH}.sh"
MINIFORGE_URL="https://github.com/conda-forge/miniforge/releases/download/${MAMBAFORGE_VER}/Miniforge3-${MAMBAFORGE_VER}-${OS}-${ARCH}.sh"

# Install mambaforge
echo Download ${MAMBAFORGE_URL}
curl -L ${MAMBAFORGE_URL} > mambaforge.sh
echo Download ${MINIFORGE_URL}
curl -L ${MINIFORGE_URL} > mambaforge.sh
head mambaforge.sh
bash mambaforge.sh -b -p "${MAMBAFORGE_INSTALLATION_DIR}"

Expand Down

0 comments on commit ec7ec31

Please sign in to comment.