From eaf8ebe4a2bafbafb368a35736121653f2f13fc1 Mon Sep 17 00:00:00 2001 From: Bjoern Gruening Date: Sat, 2 Nov 2024 19:51:45 +0100 Subject: [PATCH] download miniforge instead of mambaforge --- install-and-set-up-conda.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install-and-set-up-conda.sh b/install-and-set-up-conda.sh index 8e29135..34159f5 100644 --- a/install-and-set-up-conda.sh +++ b/install-and-set-up-conda.sh @@ -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}"