Anthropic Finally Ships Claude Desktop for Linux, Ending Community Workarounds
Anthropic officially ships Claude Desktop for Ubuntu and Debian, closing a gap that had pushed Linux users toward unofficial community builds

- Official release: Anthropic launches Claude Desktop for Linux in beta via a signed
aptrepository for Ubuntu 22.04+ and Debian 12+. - Full feature parity (mostly): Chat, Claude Code, and Cowork are all included; Computer Use and voice dictation are not yet available.
- Security gap closed: Previously, Linux users relied on the unofficial
aaddrick/claude-desktop-debiancommunity project (~4.5k stars) which was not vendor-signed or audited. - Install path: Add Anthropic's apt repo, run
sudo apt install claude-desktop; updates arrive automatically viaapt upgrade. - Paid plans only: Available on Pro, Max, Team, and Enterprise plans at no extra cost; free-tier users should use the CLI.
- Wayland caveat: The Quick Entry global hotkey requires the GlobalShortcuts portal on native Wayland; X11 works out of the box.
Anthropic has launched Claude Desktop for Linux in beta, bringing the full desktop experience to Ubuntu and Debian users for the first time through an official, vendor-signed package. The release lands via a proper apt repository, meaning updates flow through your system's regular package manager rather than requiring manual downloads.
A long time coming
This matters more than a routine platform port. Linux is not a fringe developer platform: according to the Stack Overflow 2025 Developer Survey across 49,000+ respondents in 177 countries, Ubuntu is the primary OS for 27.7% of professional developers. Despite that, Linux users had been left without an official client, forced to rely on community workarounds.
The community did step up. The leading unofficial project, aaddrick/claude-desktop-debian, accumulated roughly 4.5k stars and offered signed apt and dnf repositories, .deb/.rpm/AppImage/AUR/Nix builds, CI testing, and a --doctor diagnostic tool. But it was, by definition, not vendor-signed and not vendor-audited, and a non-trivial number of Claude users were entrusting their credentials and local filesystem access to a third-party repackage. The official release closes that security gap.
What you actually get
The desktop app on Linux gives you the same Chat, Cowork, and Claude Code experience as macOS and Windows: parallel sessions, visual diff review, an integrated terminal and editor, and live app preview.
- Claude Code: the full agentic coding environment, integrated directly into the desktop app
- Claude Cowork: the collaborative agentic workspace for longer-horizon tasks
- Chat: standard conversational interface with full context
- Visual diff review: see exactly what Claude changed in your files before accepting
- Parallel sessions: run multiple agents simultaneously from one window
The app installs from Anthropic's own apt repository, so it gets picked up automatically by apt upgrade or your distro's graphical software updater. You can also download a .deb directly from claude.com/download if you can't use the repository, though that path won't receive automatic updates.
How to install it
# Add Anthropic's signing key
sudo curl -fsSLo /usr/share/keyrings/claude-desktop-archive-keyring.asc \
https://downloads.claude.ai/claude-desktop/key.asc
# Register the repository
echo "deb [arch=amd64,arm64 signed-by=/usr/share/keyrings/claude-desktop-archive-keyring.asc] \
https://downloads.claude.ai/claude-desktop/apt/stable stable main" | \
sudo tee /etc/apt/sources.list.d/claude-desktop.list
# Install
sudo apt update && sudo apt install claude-desktopThen launch Claude from your application launcher or run claude-desktop from a terminal and sign in with your Anthropic account.
What's missing (for now)
This is a beta, and a few things didn't make the cut yet:
- Computer Use: app and screen control isn't available on Linux yet
- Voice dictation: not available in the desktop app; the CLI supports it instead
- Quick Entry global hotkey: works on X11, but on native Wayland it requires your desktop environment's GlobalShortcuts portal
- Fedora and RHEL: only Debian-based distributions are supported today
The supported configurations are Ubuntu 22.04 or later, or Debian 12 or later, on x86_64 or arm64. Other Debian-based distributions that meet these requirements may work but aren't officially tested.
The Cowork angle on Linux is different
One architectural detail worth understanding: on macOS and Windows, Cowork boots a custom Ubuntu 22.04 VM via Apple's Virtualization Framework and runs the Claude Code binary inside it under bubblewrap and seccomp. On Linux, there's no hypervisor layer needed since you're already running natively. That means Cowork's sandbox isolation model works differently here, and Anthropic notes that Computer Use (which depends on that virtualization layer) is not yet included.
Availability and cost
The Linux desktop app is available now in beta on all paid plans: Pro, Max, Team, and Enterprise. There's no additional charge beyond your existing subscription. If you're on the free tier, the Claude Code CLI remains the supported path and runs the same underlying engine across a wider range of Linux distributions.
For teams already using Claude Code heavily on Linux, this is a meaningful quality-of-life upgrade. The visual diff review alone, combined with parallel session management in a proper desktop window, closes the gap with what macOS and Windows users have had access to for some time.