Skip to content

Commit

Permalink
Merge pull request AnswerDotAI#27 from bitTone/master
Browse files Browse the repository at this point in the history
Aarch64 install added
  • Loading branch information
jph00 authored Sep 21, 2022
2 parents 603af08 + 9dcceea commit 9073c66
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup-conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ case "$OSTYPE" in
arm64) DOWNLOAD=https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-arm64.sh; ;;
*) DOWNLOAD=https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-x86_64.sh; ;;
esac ;;
linux*) DOWNLOAD=https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh; ;;
linux*)
case $(uname -m) in
aarch64) DOWNLOAD=https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-aarch64.sh; ;;
*) DOWNLOAD=https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh; ;;
esac ;;
*) echo "unknown: $OSTYPE" ;;
esac

Expand Down

0 comments on commit 9073c66

Please sign in to comment.