Skip to content

Claude Desktop 1.24012.9 (patch release 4)

Choose a tag to compare

@github-actions github-actions released this 28 Jul 13:08

Claude Desktop 1.24012.9 (patch release 4)

This release provides Claude Desktop version 1.24012.9 pre-patched for Linux.

Installation Options

Arch Linux (pacman Repository - recommended)

curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install-pacman.sh | sudo bash
sudo pacman -Syu claude-desktop-bin

Arch Linux (manual package)

# x86_64
sudo pacman -U https://github.com/patrickjaja/claude-desktop-bin/releases/download/v1.24012.9-4/claude-desktop-bin-1.24012.9-4-x86_64.pkg.tar.zst
# ARM64
sudo pacman -U https://github.com/patrickjaja/claude-desktop-bin/releases/download/v1.24012.9-4/claude-desktop-bin-1.24012.9-4-aarch64.pkg.tar.zst

Debian/Ubuntu (APT Repository — recommended)

curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install.sh | sudo bash
sudo apt install claude-desktop-bin

Debian/Ubuntu (manual .deb)

# x86_64
sudo apt install ./claude-desktop-bin_1.24012.9-4_amd64.deb
# ARM64
sudo apt install ./claude-desktop-bin_1.24012.9-4_arm64.deb

Fedora/RHEL (RPM Repository — recommended)

curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install-rpm.sh | sudo bash
sudo dnf install claude-desktop-bin

Fedora/RHEL (manual .rpm)

# x86_64
sudo dnf install ./claude-desktop-bin-1.24012.9-4.x86_64.rpm
# ARM64
sudo dnf install ./claude-desktop-bin-1.24012.9-4.aarch64.rpm

NixOS / Nix

nix run github:patrickjaja/claude-desktop-bin

AppImage (Any Distro)

# x86_64
chmod +x Claude_Desktop-1.24012.9-x86_64.AppImage
./Claude_Desktop-1.24012.9-x86_64.AppImage
# ARM64
chmod +x Claude_Desktop-1.24012.9-aarch64.AppImage
./Claude_Desktop-1.24012.9-aarch64.AppImage

Update existing AppImage (delta download — only changed blocks):

appimageupdatetool Claude_Desktop-*-x86_64.AppImage
# Or from within the AppImage:
./Claude_Desktop-*-x86_64.AppImage --appimage-update

Checksums

File SHA256
Arch pacman (x86_64) a59ca80bcd08fa9cc48b8c4db93685cf759b358e98174ef0adc046d862a5f8c1
Arch pacman (aarch64) 0f7c9c99b533ac3802259227712b84fab5d379a8da4f77582446749c20997d38
Tarball (x86_64) e28cc33e52790f8f84fb11dbc737bd1327e23e630afe1e2d6820b323fb2f757d
Tarball (aarch64) 5a806751558b86e930f40500eb3dfde20e7226c679eaace87fb6f57d40c8a722
AppImage (x86_64) 74ae01d015f08d7e5e4b67c8bfd53d9fb172a919abdd02152f0a7003d3033e2e
AppImage (aarch64) 0f2cfd4b3f85bdefdd26c09c09b1ce1558c397a9f346622e226f9462e5520277
Debian (amd64) a6fc9166d0a198cd6443c2ec4088280600994a034720e5bcdd46cdc82c2d0218
Debian (arm64) 7db0109dea74c8ee2004ab15b2fd76c2ab86b3986c38ad496a2ced213317411a
RPM (x86_64) 25403998aed12ae237b7a4643a47b085c7f12fdcd2a1bbce2f8593323645afd6
RPM (aarch64) 2a0191b233ab9692b0382d9f9629a5d5cf72e409bbc8f736657ebc96a2205c9c

Changes since last release

From CHANGELOG.md, 2026-07-28:

Arch / Manjaro: install from our own signed pacman repository

The claude-desktop-bin AUR package was deleted by the AUR maintainers after a third party filed a duplicate-package request against it. Rather than return to the AUR, Arch and Manjaro users are now served by our own pacman repository, matching how we already ship to Debian/Ubuntu and Fedora/RHEL:

curl -fsSL https://patrickjaja.github.io/claude-desktop-bin/install-pacman.sh | sudo bash
sudo pacman -Syu claude-desktop-bin

Packages and the repository database are GPG-signed with the same key as the APT and RPM repos (SigLevel = Required DatabaseRequired) and hosted as GitHub release assets. Updates arrive with sudo pacman -Syu; AUR helpers wrap pacman, so yay -Syu keeps working. Because flat release assets cannot express per-arch directories, the repo section is [claude-desktop-bin] on x86_64 and [claude-desktop-bin-aarch64] on aarch64 - the package name is claude-desktop-bin on both. The README documents the manual pacman.conf stanza for anyone who prefers not to pipe a script into sudo bash.

Building from source stays supported for users who avoid third-party repositories: the PKGBUILD is still generated and CI-tested on every release, and it is now published as a release asset along with .SRCINFO and claude-desktop-bin.install, so makepkg -si works without an AUR clone.

The AUR push step has been removed from the release workflow.

Links