2021-01-09 11:13:28 +03:00
|
|
|
case "$(anaconda_architecture 2>/dev/null || true)" in
|
|
|
|
|
"Linux-ppc64le" )
|
2021-01-09 20:07:03 +03:00
|
|
|
install_script "Miniforge3-4.9.2-5-Linux-ppc64le" "https://github.com/conda-forge/miniforge/releases/download/4.9.2-5/Miniforge3-4.9.2-5-Linux-ppc64le.sh#825b3e5f39f0bdb825323ea23af24ba4" "miniconda" verify_py38
|
2021-01-09 11:13:28 +03:00
|
|
|
;;
|
|
|
|
|
"Linux-x86_64" )
|
2021-01-09 20:07:03 +03:00
|
|
|
install_script "Miniforge3-4.9.2-5-Linux-x86_64" "https://github.com/conda-forge/miniforge/releases/download/4.9.2-5/Miniforge3-4.9.2-5-Linux-x86_64.sh#73ea193f82d8f3b558b9c2186a147bcf" "miniconda" verify_py38
|
2021-01-09 11:13:28 +03:00
|
|
|
;;
|
|
|
|
|
"MacOSX-arm64" )
|
2021-01-10 09:37:42 +03:00
|
|
|
install_script "Miniforge3-4.9.2-5-MacOSX-arm64" "https://github.com/conda-forge/miniforge/releases/download/4.9.2-5/Miniforge3-4.9.2-5-MacOSX-arm64.sh#cf309b725c8a0b4448e4ee922703bf00" "miniconda" verify_py39
|
2021-01-09 11:13:28 +03:00
|
|
|
;;
|
|
|
|
|
"MacOSX-x86_64" )
|
2021-01-10 09:37:42 +03:00
|
|
|
install_script "Miniforge3-4.9.2-5-MacOSX-x86_64" "https://github.com/conda-forge/miniforge/releases/download/4.9.2-5/Miniforge3-4.9.2-5-MacOSX-x86_64.sh#e66d62e8872bc1548af54063cab7b72e" "miniconda" verify_py38
|
2021-01-09 11:13:28 +03:00
|
|
|
;;
|
|
|
|
|
* )
|
|
|
|
|
{ echo
|
|
|
|
|
colorize 1 "ERROR"
|
|
|
|
|
echo ": The binary distribution of Miniforge is not available for $(anaconda_architecture 2>/dev/null || true)."
|
|
|
|
|
echo
|
|
|
|
|
} >&2
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|