Last active
April 12, 2026 05:55
-
-
Save aasthavar/d63c798c8de9f2e983f2157790b1730d to your computer and use it in GitHub Desktop.
install conda
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 ~/miniconda3/miniconda.sh | |
| source ~/miniconda3/bin/activate | |
| conda init --all | |
| conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main | |
| conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment