Skip to content

Instantly share code, notes, and snippets.

@elejke
Forked from arose13/install-conda.sh
Last active November 24, 2023 12:14
Show Gist options
  • Save elejke/3437be39478c66a3efac26700cb14334 to your computer and use it in GitHub Desktop.
Save elejke/3437be39478c66a3efac26700cb14334 to your computer and use it in GitHub Desktop.
Install Miniforge (Minimal conda installation) in Ubuntu arm64 / aarch64
# Setup Ubuntu
sudo apt update --yes
sudo apt upgrade --yes
# Get Miniforge and make it the main Python interpreter
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh -O ~/miniforge.sh
bash ~/miniforge.sh -b -p ~/miniforge
rm ~/miniforge.sh
echo "PATH=$PATH:$HOME/miniforge/bin" >> .bashrc
source .bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment