Created
August 17, 2024 18:42
-
-
Save morganmcg1/d2970bdd7605b37271bbc6fe384272de to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# Download the Miniforge installer | |
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh | |
# Run the Miniforge installer | |
bash Miniforge3-Linux-x86_64.sh | |
# Install mamba in the base environment using conda | |
conda install mamba -n base -c conda-forge | |
mamba create -n ml python=3.12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment