Claude Desktop for Linux: Anthropic Launches the Official Beta

Philipp Briel
Philipp Briel · 6 min. read
Claude
Picture: Anthropic

There is now an official Claude desktop app for Linux. Anthropic released it on June 30, 2026, as a beta, initially for Ubuntu and Debian. The app features the same three sections as on macOS and Windows—Chat, Cowork, and Code—and runs via its own apt repository, so updates are delivered through the system update process as usual.

Until now, Linux users had to make do with either the web interface or unofficial community packages that awkwardly ported the Windows version to Linux. That’s now a thing of the past. We took a look at what the beta can do, how the installation goes, and where it still has some kinks.

Key Points at a Glance

  • Anthropic released Claude Desktop as an official beta for Linux on June 30, 2026.
  • It supports Ubuntu 22.04 (and newer) as well as Debian 12 (and newer) on x86_64 and arm64.
  • Installation is done via Anthropic’s apt repository; the app includes Chat, Cowork, and Code.
  • Not yet included: Computer Use (screen control), voice input in the interface, and full Wayland support for hotkeys.
  • A paid subscription (Pro, Max, Team, or Enterprise) is required for Claude Code.

What Claude Desktop Offers on Linux

The Linux version isn’t a stripped-down stopgap solution; according to Anthropic, it offers the same feature set as on other platforms. Specifically, you get three tabs: Chat for traditional conversations, Cowork for collaborative work, and Code for development tasks right within the desktop window.

The Code section is particularly interesting. You can run multiple sessions in parallel, visually review and approve code changes as diffs, use an integrated terminal with an editor, and preview applications in real time. At its core, it’s the same Claude Code that many are already familiar with from the terminal—just in a proper window instead of the command line.

A key feature is support for the Model Context Protocol (MCP). This allows the app to connect to local files, databases, and tools on your computer. That’s exactly why many developers prefer the desktop version over using it solely in a browser: the model sees your actual work environment and doesn’t operate in isolation within a chat window.

System Requirements and Installation

Before you get started, here’s a look at the requirements. Anthropic officially tests the beta on only two distributions; other Debian-based distributions may work but are not guaranteed.

Requirements Details
Operating System Ubuntu 22.04 or newer, Debian 12 or newer
Architecture x86_64 or arm64
Installation Method apt repository (recommended) or .deb package
Updates Via standard system updates (no dedicated updater)
Not officially supported Fedora, RHEL

Installation via the apt repository

The cleanest way is via Anthropic’s own repository. First, import the signature key:

sudo curl -fsSLo /usr/share/keyrings/claude-desktop-archive-keyring.asc https://downloads.claude.ai/claude-desktop/key.asc

Then add the package source:

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

Next, update the package list and install the app:

sudo apt update && sudo apt install claude-desktop

Finally, launch Claude from the application menu or by typing ` claude-desktop` in the terminal, and log in with your Anthropic account. If you want to be on the safe side, you can verify the key’s fingerprint using ` gpg --show-keys `.

Alternative: Installation via .deb package

If the repository isn’t an option for you, you can download the appropriate .deb package directly from claude.com/download and install it using the Software Installer or the terminal. There’s one catch, though: When installed this way, the app won’t receive automatic updates. If you want those, you’ll need to manually add the repository later.

These features are still missing in the Linux beta

Beta is still beta—a few features that are already available on other platforms aren’t yet included in the Linux version:

  • Computer Use: The screen and app control feature that allows Claude to operate applications independently is disabled on Linux.
  • Voice Input: The dictation feature is missing from the interface. As a workaround, you can use voice control via the CLI.
  • Quick-Entry Hotkey: Under X11, the global hotkey works without any issues; under native Wayland, a configured GlobalShortcuts portal in the desktop environment is required.
  • Other Distributions: Fedora and RHEL are not yet supported. However, Anthropic has indicated that support for more distributions is in the works.

If you need a feature that the desktop app doesn’t yet support, you can temporarily switch to the CLI. It uses the same Claude Code engine and runs on a much wider range of Linux distributions.

What You Need for Claude Code

The chat generally works with standard login credentials, but the Code tab is a different story. Direct access to local project files, including version control, requires a paid subscription—specifically, a Pro, Max, Team, or Enterprise plan. In line with this, Anthropic has also recently significantly expanded the usage limits for Claude Code, making desktop use even more attractive for developers.

The Linux app is part of a whole wave of Claude innovations. Just recently, Anthropic introduced Claude Tag, bringing AI into Slack as a team member, and the current flagship model, Claude Opus 4.8, has made significant strides, particularly in coding and agent-based workflows.

Frequently Asked Questions About Claude Desktop on Linux

Is Claude Desktop officially available for Linux?
Yes. Since June 30, 2026, Anthropic has been offering an official beta of the desktop app for Linux, initially for Ubuntu and Debian.

Which distributions are supported?
Ubuntu version 22.04 and later and Debian version 12 and later have been officially tested, on both x86_64 and arm64 architectures. Other Debian-based systems may work but are not officially supported. Fedora and RHEL are not currently supported.

How is the app updated?
Claude Desktop does not include its own updater on Linux. Updates are delivered via the standard system update process, such as using `sudo apt update && sudo apt upgrade ` or through the graphical software updater.

Does the Linux app cost anything?
The app itself is available for free. However, for the Code tab with access to local files, you’ll need a paid subscription (Pro, Max, Team, or Enterprise).

Conclusion

With the official beta of Claude Desktop for Linux, Anthropic is closing a gap that many developers have had to bridge with workarounds for years. The fact that Chat, Cowork, and Code—including MCP integration—are all included right out of the box makes the app usable from the start. The missing features, such as Computer Use or voice input, are tolerable for typical day-to-day coding, and the fact that updates run smoothly via apt is exactly what you’d expect on Linux. For anything the app can’t do yet, the CLI remains a solid fallback option.

Sources: Anthropic (official documentation)