Skip to content

Commit

Permalink
fix miniforge script url
Browse files Browse the repository at this point in the history
  • Loading branch information
jmtcsngr committed Dec 10, 2024
1 parent cb6d505 commit 7d09205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install_miniforge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# conda activate
set -ex
MINIFORGE_VERSION="24.9.0-0"
MINIFORGE_SHA256="77fb505f6266ffa1b5d59604cf6ba25948627e908928cbff148813957b1c28af"
MINIFORGE_SHA256="a75b489adb52effd81d15f0e700c0803992fe6a2357e8eb80685a529df7daa48"
CONDA_HOME=${CONDA_HOME:="$HOME/conda"}
export CONDA_HOME
CONDARC="$HOME/.condarc"
Expand All @@ -20,7 +20,7 @@ show_channel_urls: true
channels:
- conda-forge
EOF
curl -sSL "https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}/Mambaforge-${MINIFORGE_VERSION}-Linux-x86_64.sh" -o ./miniforge.sh
curl -sSL "https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}/Miniforge3-${MINIFORGE_VERSION}-$(uname)-$(uname -m).sh" -o ./miniforge.sh
sha256sum ./miniforge.sh | grep "$MINIFORGE_SHA256"
/bin/bash ./miniforge.sh -b -p "$CONDA_HOME"
rm ./miniforge.sh

0 comments on commit 7d09205

Please sign in to comment.