Please check the Releases page for the latest builds. Feedback on the packages and the build process is greatly appreciated! Please open an issue if you encounter any problems.
THIS IS AN UNOFFICIAL BUILD SCRIPT (produces only an .AppImage)!
If you run into an issue with this build script, make an issue here. Don't bug Anthropic about it - they already have enough on their plates.
This project was inspired by k3d3's claude-desktop-linux-flake and their Reddit post about running Claude Desktop natively on Linux. Their work provided valuable insights into the application's structure and the native bindings implementation.
Supports MCP!
Location of the MCP-configuration file is: ~/.config/Claude/claude_desktop_config.json
Supports the Ctrl+Alt+Space popup!

Supports the Tray menu! (Screenshot of running on KDE)

This project uses GitHub Actions to automatically build Claude Desktop AppImages for both AMD64 and ARM64 architectures. No local building is required - simply download the pre-built AppImages from the releases page.
- Go to the Releases page
- Download the appropriate AppImage for your architecture:
claude-desktop-*-amd64.AppImagefor x86_64 systemsclaude-desktop-*-arm64.AppImagefor ARM64 systems
The included update.sh script downloads the latest release AppImage and swaps
it in. It only needs curl (or wget) — no GitHub CLI or authentication — and
picks the right architecture (amd64/arm64) automatically.
# Download and run the update script
wget https://raw.githubusercontent.com/cono/claude-desktop-appimage/main/update.sh
chmod +x update.sh
./update.shThe script will:
- Check the latest release via the public GitHub API
- Download the AppImage for your architecture
- Compare the files to avoid unnecessary swaps
- Back up the current binary as
<binary>-old - Make the new binary executable
Where it updates: $CLAUDE_BIN if set, otherwise /opt/claude/claude-desktop
if that directory exists (the make install layout),
otherwise ./claude-desktop in the current directory.
Hands-off updates: if you installed with make install, you were offered a
systemd user timer that runs this script daily. Manage it with:
systemctl --user list-timers 'claude-*' # see the schedule
systemctl --user start claude-update # update right now
systemctl --user disable --now claude-update.timer # stop auto-updatesIf you want to build locally (for development, or to install with full desktop integration), clone the repo first:
git clone https://github.com/cono/claude-desktop-appimage.git
cd claude-desktop-appimageThe easiest way to get a fully integrated install. It downloads the latest
AppImage from GitHub releases (no build, no Docker) and sets everything up so
the app behaves like a native install — correct menu entry and window/taskbar
icon, working claude:// login handler, and (optionally) automatic updates.
make installThis will:
- Download the latest release AppImage for your architecture (via
update.sh). - Create
/opt/claudeowned by your user (asks forsudoonce for the/optdir). - Install it as
/opt/claude/claude-desktop(backing up any previous copy asclaude-desktop-old). - Install the app icon into your icon theme and write
~/.local/share/applications/com.anthropic.Claude.desktop(its name matches the Waylandapp_idso your compositor shows the right icon), then register theclaude://handler. - Prompt whether to install a systemd user timer that auto-updates the AppImage daily (see Automatic Updates).
To install a locally-built AppImage instead of the released one (for
development), build it and use install-local:
make install-local # runs `make build` if ./output is empty, then installs itRemove everything it installed (config in ~/.config/Claude is kept):
make uninstallRequirements:
curlorwgetand a Linux desktop with the usual freedesktop tools;make installneedssudoonly to create/opt/claude. (make install-localadditionally needs Docker for the build.) Runmake helpto list all targets.
Prefer to drive the build yourself:
# Build the AppImage directly on a Debian-based host (installs build deps)
./build.sh
# ...or build in Docker without installing host deps
make build # result in ./outputbuild.sh will download and extract resources from the Windows version, replace
the platform-specific native module, apply the Linux fixes, and produce the
.AppImage (plus a matching .desktop file).
Heads-up: a bare AppImage installs nothing by itself — running it launches the
app but adds no menu entry or icon, and claude:// login will not work until a
.desktop file is registered. Use make install above, a tool like
AppImageLauncher, or set it up
manually:
- Make the AppImage executable:
chmod +x ./FILENAME.AppImage - Run it:
./FILENAME.AppImage - Integrate manually: move the
.AppImagesomewhere stable (e.g./optor~/Applications) and copy the generatedclaude-desktop-appimage.desktopto~/.local/share/applications/, editing itsExec=line to point at the AppImage's location. Then runupdate-desktop-database ~/.local/share/applications.
The AppImage script runs with electron's --no-sandbox flag. AppImage's don't have their own sandbox. chome-sandbox, which is used by electron, needs to escalate root privileges briefly in order to setup the sandbox. When you pack an AppImage, chrome-sandbox loses any assigned ownership and executes with user permissions. There's also an issue with unprivileged namespaces being set differently on different distributions.
Alternatives to --no-sandbox
- Run claude-desktop as root
- Doesn't feel warm and fuzzy.
- Install chrome-sandbox outside of the AppImage(or leverage an existing install), set it with the right permissions, and reference it.
- Counter-intuitive to the "batteries included" mindset of AppImages
- Run it with --no-sandbox, but then wrap the whole thing inside another sandbox like bubblewrap
- Not "batteries included", and configuring in such a way that it runs everywhere is beyond my immediate capabilities.
I'd love a better suggestion. Feel free to submit a PR or start a discussion if I missed something obvious.
From the cloned repository:
make uninstallThis removes /opt/claude, the desktop entry, the installed icon, and the
auto-update systemd timer. Your configuration in ~/.config/Claude is kept
(see below to remove it too).
If you set it up manually:
- Delete the
.AppImagefile. - Delete the associated
.desktopfile (e.g.,claude-desktop-appimage.desktopfrom where you placed it, like~/.local/share/applications/). - If you used AppImageLauncher, it might offer an option to un-integrate the AppImage.
To remove user-specific configuration files (including MCP settings), regardless of installation method:
rm -rf ~/.config/ClaudeAside from the install logs, runtime logs can be found in ($HOME/claude-desktop-launcher.log).
If your window isn't scaling correctly the first time or two you open the application, right click on the claude-desktop panel (taskbar) icon and quit. When doing a safe shutdown like this, the application saves some states to the .config/claude folder which will resolve the issue moving forward. Force quitting the application will not trigger the updates.
Claude Desktop is an Electron application packaged as a Windows executable. Our build script performs several key operations to make it work on Linux:
- Downloads and extracts the Windows installer
- Unpacks the
app.asararchive containing the application code - Replaces the Windows-specific native module with a Linux-compatible stub implementation
- Repackages everything into the user's chosen format:
- AppImage (.AppImage): Creates a self-contained executable using
appimagetool.
- AppImage (.AppImage): Creates a self-contained executable using
The process works because Claude Desktop is largely cross-platform, with only one platform-specific component that needs replacement.
The main build script (build.sh) orchestrates the process:
- Checks for a Debian-based system and required dependencies
- Parses the
--cleanflag to determine cleanup behavior. - Downloads the official Windows installer
- Extracts the application resources
- Processes icons for Linux desktop integration
- Unpacks and modifies the app.asar:
- Replaces the native mapping module with our Linux version
- Preserves all other functionality
- Calls the packaging script (
scripts/build-appimage.sh) to create the final AppImage.- For .AppImage: Creates an AppDir, bundles Electron, generates an
AppRunscript and.desktopfile, and usesappimagetoolto create the final.AppImage.
- For .AppImage: Creates an AppDir, bundles Electron, generates an
When a new version of Claude Desktop is released, the script attempts to automatically detect the correct download URL based on your system architecture (amd64 or arm64). If the download URLs change significantly in the future, you may need to update the CLAUDE_DOWNLOAD_URL variables near the top of build.sh. The script should handle the rest of the build process automatically.
For NixOS users, please refer to k3d3's claude-desktop-linux-flake repository. Their implementation is specifically designed for NixOS and provides the original Nix flake that inspired this project. Go check their repo out if you want some more details about the core process behind this.
Emsi has put together a fork of this repo at https://github.com/emsi/claude-desktop. Aside from approaching the problem much more intelligently than I, his repo collection is full of goodies such as https://github.com/emsi/MyManus. This repo (aaddrick/claude-desktop-debian) currently relies on his title bar fix to keep the main title bar visible.
The build scripts in this repository, are dual-licensed under the terms of the MIT license and the Apache License (Version 2.0).
See LICENSE-MIT and LICENSE-APACHE for details.
The Claude Desktop application, not included in this repository, is likely covered by Anthropic's Consumer Terms.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
