Skip to content

Instantly share code, notes, and snippets.

@sebastinez
Last active March 15, 2022 14:50
Show Gist options
  • Save sebastinez/d8f2d4979cad0d9f23c162702cdd4735 to your computer and use it in GitHub Desktop.
Save sebastinez/d8f2d4979cad0d9f23c162702cdd4735 to your computer and use it in GitHub Desktop.
Install Radicle CLI with homebrew on a M1 Mac

Uninstall hombrew

If you are not sure under which architecture you installed homebrew uninstall it first with:

$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"

Install homebrew

$ arch -x86_64 zsh
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Install radicle/cli

brew tap radicle/cli https://seed.alt-clients.radicle.xyz/radicle-cli-homebrew.git
brew install radicle/cli/core

Run rad to see that the CLI works

@joelhans
Copy link

A slightly different set of steps worked for me—for some reason, my system really doesn't like the arch -x86_64 zsh command on its own, so appending it to every other command seemed to work OK.

Install Homebrew

arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

Install Radicle

arch -x86_64 brew tap radicle/cli https://seed.alt-clients.radicle.xyz/radicle-cli-homebrew.git
arch -x86_64 brew install radicle/cli/core

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