Skip to content

Instantly share code, notes, and snippets.

@David-Araripe
Last active October 24, 2024 12:22
Show Gist options
  • Save David-Araripe/3ecd90bfbfd1c8e813812a203384b3c0 to your computer and use it in GitHub Desktop.
Save David-Araripe/3ecd90bfbfd1c8e813812a203384b3c0 to your computer and use it in GitHub Desktop.
installing micromamba on different

Micromamba installation guide:

Which Linux distro are you using?

For this, you can run: uname -m

Depending on the output, follow the command from the installation guide:

# Linux Intel (x86_64):
curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba
# Linux ARM64:
curl -Ls https://micro.mamba.pm/api/micromamba/linux-aarch64/latest | tar -xvj bin/micromamba
# Linux Power:
curl -Ls https://micro.mamba.pm/api/micromamba/linux-ppc64le/latest | tar -xvj bin/micromamba
# macOS Intel (x86_64):
curl -Ls https://micro.mamba.pm/api/micromamba/osx-64/latest | tar -xvj bin/micromamba
# macOS Silicon/M1 (ARM64):
curl -Ls https://micro.mamba.pm/api/micromamba/osx-arm64/latest | tar -xvj bin/micromamba

Initialize it: ./bin/micromamba shell init -s bash ~/micromamba

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment