Skip to content

Instantly share code, notes, and snippets.

@morganmcg1
Created August 17, 2024 18:42
Show Gist options
  • Save morganmcg1/d2970bdd7605b37271bbc6fe384272de to your computer and use it in GitHub Desktop.
Save morganmcg1/d2970bdd7605b37271bbc6fe384272de to your computer and use it in GitHub Desktop.
#!/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