This is Radicle’s download page, which references various ways of downloading Radicle to your machine.
Package Manager
Note that all packages are maintained on a best-effort basis, it might take some time for them to catch up after a release. Thanks to all community members that help distributing Radicle!
Advanced Package Tool (and compatible)
To use our repository at https://radicle.xyz/apt, first install the signing key:
curl -LO https://radicle.xyz/apt/radicle-archive-keyring.deb
chmod a+r radicle-archive-keyring.deb
sudo apt install ./radicle-archive-keyring.deb
Then add the URL to your /etc/apt/sources.list:
echo "deb [signed-by=/usr/share/radicle/radicle-archive-keyring.asc] https://radicle.xyz/apt release main" | sudo tee -a "/etc/apt/sources.list"
Now install radicle, e.g.:
sudo apt-get install radicle
Pacman
Install radicle-bin from AUR.
Nix
Install radicle-node from Nixpkgs.
Reproducible Binary
Radicle uses a reproducible build pipeline to ensure that anyone can reproduce the binaries on this page from source.
Radicle
| OS | Arch | File | Signature | Checksum |
|---|---|---|---|---|
| Linux | Loading… | 💾 Loading… | Loading… | Loading… |
| Loading… | 💾 Loading… | Loading… | Loading… | |
| macOS | Loading… | 💾 Loading… | Loading… | Loading… |
| Loading… | 💾 Loading… | Loading… | Loading… |
| Signer | |
|---|---|
| Key | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL460KIEccS4881p7PPpiiQBsxF+H5tgC6De6crw9rbU |
| Fingerprint | SHA256:iTDjRHSIaoL8dpHbQ0mv+y0IQqPufGl2hQwk4TbXFlw |
| Owner | cloudhead@radicle.xyz |
| Key | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBrJyJTwj/xG7F7qY0HDFXbb8A+xNNH8eILQ8hlvKW7/ |
| Fingerprint | SHA256:MOkcQvljDqQn8y+zlHFssx6gdH0rXdC+Wn88bsTPp6g |
| Owner | erik@radicle.xyz |
| Key | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEFsaRqAJ1r6bBFwlcWzJKN7DdjItQDumCNc0wqw6Dvk |
| Fingerprint | SHA256:vV38nW5eSWfTMITdAoMCBOFzEEr0bDMXjSWHpwrpsKY |
| Owner | fintan@radicle.xyz |
| Key | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFhK7CqgIIbSthoNn8ea32krOnMzC807Z+PpBkR2YOVj |
| Fingerprint | SHA256:xX6bpr+AeF5G0wIvU8nLisgYRM6XjQVNJs3hkMGt+T0 |
| Owner | lorenz@radicle.xyz |
Radicle HTTP Daemon
| OS | Arch | File | Signature | Checksum |
|---|---|---|---|---|
| Linux | Loading… | 💾 Loading… | Loading… | Loading… |
| Loading… | 💾 Loading… | Loading… | Loading… | |
| macOS | Loading… | 💾 Loading… | Loading… | Loading… |
| Loading… | 💾 Loading… | Loading… | Loading… |
| Signer | |
|---|---|
| Key | ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEFsaRqAJ1r6bBFwlcWzJKN7DdjItQDumCNc0wqw6Dvk |
| Fingerprint | SHA256:vV38nW5eSWfTMITdAoMCBOFzEEr0bDMXjSWHpwrpsKY |
| Owner | fintan@radicle.xyz |
Download
| OS | Arch | Target |
|---|---|---|
| Linux | x86_64 | x86_64-unknown-linux-musl |
| aarch64 (ARM) | aarch64-unknown-linux-musl | |
| macOS | x86_64 | x86_64-apple-darwin |
| aarch64 (ARM) | aarch64-apple-darwin |
You can download the appropriate tarball for your operating system with:
curl -O -L https://files.radicle.xyz/releases/latest/radicle-$TARGET.tar.xz
For Radicle proper, and:
curl -O -L https://files.radicle.xyz/releases/radicle-httpd/latest/radicle-httpd-$TARGET.tar.xz
For Radicle HTTP Daemon.
Replace $TARGET with the appropriate target for your system, from the table
above.
Verification
After you’ve downloaded the archive (ARCHIVE.tar.xz in the examples below),
verify the signature using the .sig file and ssh-keygen. The output must
match the following, including the respective signing key fingerprint from
the section above. For example:
$ ssh-keygen -Y check-novalidate -n file -s ARCHIVE.tar.xz.sig < ARCHIVE.tar.xz
Good "file" signature with ED25519 key SHA256:iTDjRHSIaoL8dpHbQ0mv+y0IQqPufGl2hQwk4TbXFlw
To verify the checksum, download the .sha256 file, and run:
$ sha256sum -c ARCHIVE.tar.xz.sha256
ARCHIVE.tar.xz: OK
The output must correspond to the above.
Installation
To install, simply extract the files to a location in your PATH, for example:
$ tar -xvJf ARCHIVE.tar.xz --strip-components=1 -C ~/.radicle/
This will place binaries in ~/.radicle/bin and manuals in ~/.radicle/man,
and overwrite any existing Radicle binaries.