Last active
January 17, 2024 15:34
-
-
Save FrankieWOO/b5d188357b30d05279c7dd9b9cc6d941 to your computer and use it in GitHub Desktop.
Install miniconda and init fish shell
This file contains hidden or 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
mkdir -p ~/miniconda3 | |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh | |
bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3 | |
rm -rf ~/miniconda3/miniconda.sh | |
# after this, init fish shell | |
~/miniconda3/bin/conda init fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment