Created
May 15, 2022 04:49
-
-
Save EmbraceLife/267f8a1ae67e1d6b7c456ecef4e06249 to your computer and use it in GitHub Desktop.
The final step to get mamba ready: init the mamba
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eou pipefail | |
# case "$OSTYPE" in | |
# darwin*) | |
# case $(uname -m) 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; ;; | |
# *) echo "unknown: $OSTYPE" ;; | |
# esac | |
case "$SHELL" in | |
/bin/zsh*) SHELL_NAME=zsh; ;; | |
/bin/bash*) SHELL_NAME=bash ;; | |
/usr/local/bin/fish*) SHELL_NAME=fish ;; | |
*) echo "unknown: $SHELL" ;; | |
esac | |
# echo Downloading installer... | |
# curl -LO $DOWNLOAD | |
# bash Mambaforge-*.sh -b | |
~/mambaforge/bin/conda init $SHELL_NAME | |
echo Please close and reopen your terminal. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment