26 lines
1.6 KiB
Plaintext
26 lines
1.6 KiB
Plaintext
case "$(anaconda_architecture 2>/dev/null || true)" in
|
|
"Linux-aarch64" )
|
|
install_script "Mambaforge-22.11.1-0-Linux-aarch64.sh" "https://github.com/conda-forge/miniforge/releases/download/22.11.1-0/Mambaforge-22.11.1-0-Linux-aarch64.sh#d701d2d411fef9f7c7beddf388a9cefc354e354fa7d4c9e5663d6a7413d76aab" "miniconda" verify_py310
|
|
;;
|
|
"Linux-ppc64le" )
|
|
install_script "Mambaforge-22.11.1-0-Linux-ppc64le.sh" "https://github.com/conda-forge/miniforge/releases/download/22.11.1-0/Mambaforge-22.11.1-0-Linux-ppc64le.sh#614b8e33e9b8086c81ce45ac9763b57bc38f51e70184b15b54ef02e12a00b8c8" "miniconda" verify_py310
|
|
;;
|
|
"Linux-x86_64" )
|
|
install_script "Mambaforge-22.11.1-0-Linux-x86_64.sh" "https://github.com/conda-forge/miniforge/releases/download/22.11.1-0/Mambaforge-22.11.1-0-Linux-x86_64.sh#e79c9b9553ab05d3d2e5b026f38035dbc772d79a96aa883b836828a16fccf44d" "miniconda" verify_py310
|
|
;;
|
|
"MacOSX-arm64" )
|
|
install_script "Mambaforge-22.11.1-0-MacOSX-arm64.sh" "https://github.com/conda-forge/miniforge/releases/download/22.11.1-0/Mambaforge-22.11.1-0-MacOSX-arm64.sh#67e3cf19b0aa21c5a890dde5545265c51792c6c495939eb26dfccdc6d3677b36" "miniconda" verify_py310
|
|
;;
|
|
"MacOSX-x86_64" )
|
|
install_script "Mambaforge-22.11.1-0-MacOSX-x86_64.sh" "https://github.com/conda-forge/miniforge/releases/download/22.11.1-0/Mambaforge-22.11.1-0-MacOSX-x86_64.sh#3067c707b3f297445fc2c9b66752a6320244d8a5589488ece8f2265c45230318" "miniconda" verify_py310
|
|
;;
|
|
* )
|
|
{ echo
|
|
colorize 1 "ERROR"
|
|
echo ": The binary distribution of Mambaforge is not available for $(anaconda_architecture 2>/dev/null || true)."
|
|
echo
|
|
} >&2
|
|
exit 1
|
|
;;
|
|
esac
|