We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 798733b commit 908d5afCopy full SHA for 908d5af
setup_miniconda.sh
@@ -13,8 +13,13 @@ INSTALL_PREFIX=${PWD}
13
USER_INSTALL=false
14
15
# here the conda version is fixed, the sha256 hash has to be set accordingly
16
-MINICONDA_URL=https://repo.anaconda.com/miniconda/Miniconda3-py310_23.11.0-1-Linux-x86_64.sh
17
-SHA256=6581658486be8e700d77e24eccafba586a0fbafafadcf73d35ab13eaee4b80b1
+ARCH="$(arch)"
+MINICONDA_URL=https://repo.anaconda.com/miniconda/Miniconda3-py310_23.11.0-1-Linux-${ARCH}.sh
18
+if [[ ${ARCH} == "x86_64" ]]; then
19
+ SHA256=6581658486be8e700d77e24eccafba586a0fbafafadcf73d35ab13eaee4b80b1
20
+elif [[ ${ARCH} == aarch64 ]]; then
21
+ SHA256=30b3f26fee441c5d70bd50ec06ea1acaa0e373ad30771165eada3f6bdf27766a
22
+fi
23
24
25
# Eval command line options
0 commit comments