Download Claude: every app, every platform
Official download links and system requirements for every way to run Claude in 2026 - desktop apps, mobile apps, Claude Code, the Chrome extension and Microsoft 365 add-ins.
Every official way to get Claude in one place. Anthropic ships a web app at claude.ai, native apps for iOS, Android and ChromeOS, desktop apps for macOS 11+, Windows 10+ and Linux (beta), the Claude Code CLI for the terminal, a Chrome extension, Microsoft 365 add-ins, and Python and TypeScript SDKs. Everything below links to Anthropic's own properties.
This site hosts no installers, no APKs and no mirrors. If a page anywhere offers you a “Claude AI setup.exe”, it is not from Anthropic. The only safe sources are claude.com/download, the official app stores, and the signed package repositories documented at code.claude.com/docs.
#Download at a glance, August 2026
- Official hub
- claude.com/download
- Desktop OS support
- macOS 11+, Windows 10+, Linux beta (Ubuntu 22.04+ / Debian 12+)
- Mobile OS support
- iOS 18.0+, Android (also runs on ChromeOS)
- Claude Code requirements
- macOS 13+, Windows 10 1809+, Ubuntu 20.04+, 4 GB RAM
- Official SDKs
- Python and TypeScript
- Cost to download
- $0 - every client is free; the plan is what you pay for
#Where can I download Claude for my platform?
One table, every route. Nothing here needs a licence key: you install the client, then sign in with the account described on the Claude login page. Your plan travels with the account, not with the download.
| Platform | Requirement | Official source | Notes |
|---|---|---|---|
| Web | Any modern browser | claude.ai | No install. Works on the free plan. See using claude.ai. |
| iPhone / iPad | iOS 18.0 or later, ~169 MB | claude.com/download → App Store | Listed as “Claude by Anthropic”. Details on the iOS app page. |
| Android / ChromeOS | Google Play device; ChromeOS supported | claude.com/download → Google Play | Same build serves ChromeOS. See the Android app page. |
| macOS desktop | macOS 11 or later, Apple Silicon or Intel | support.claude.com install guide | Universal DMG. Local MCP servers, global shortcut. See the desktop app. |
| Windows desktop | Windows 10 or later, x64 or ARM64 | claude.com/download | Separate x64 and ARM64 installers. Pick the one matching your CPU. |
| Linux desktop Beta | Ubuntu 22.04 LTS+ or Debian 12+, x64 or arm64 | code.claude.com/docs/en/desktop-linux | Signed apt repo is the recommended route; a standalone .deb will not auto-update. |
| Claude Code | macOS 13+ / Windows 10 1809+ / Ubuntu 20.04+, 4 GB RAM | code.claude.com/docs/en/setup | Terminal CLI. Paid plans only - not on Free. See Claude for developers. |
| Claude in Chrome | Desktop Google Chrome; paid plan | support.claude.com Chrome guide | Not Chromium forks, not mobile Chrome. |
| Microsoft 365 add-ins | Microsoft 365; paid plan | claude.com/claude-for-microsoft-365 | Excel, PowerPoint and Word are GA; Outlook is beta. |
| Claude Science Beta | macOS (Apple Silicon or Intel) or Linux x64 | claude.com/download | Research workbench with 60+ science skills. Paid plans. |
| Python SDK | Python 3, an API key | platform.claude.com/docs | pip install anthropic. See the API section below. |
| TypeScript SDK | Node.js, an API key | platform.claude.com/docs | npm install @anthropic-ai/sdk. |
Installing a client costs nothing, but several surfaces refuse to start without a paid subscription. Claude Code, Cowork, Claude Design, Claude Science, Claude in Chrome and the Microsoft 365 add-ins all require Pro, Max, Team or Enterprise. Chat itself works on Free everywhere. The full split is on the pricing page.
#Which Claude download do you actually need?
#You just want to chat
Use the web app. It is the fastest route, needs no install and gets features first. Add the mobile app if you want voice mode and camera capture on the move.
#You want Claude to touch local files
Install the desktop app. It is the only client that runs local MCP servers and desktop extensions against files on your own machine.
#You write code
Install Claude Code in the terminal, plus the VS Code or JetBrains extension. The desktop app adds visual diffs and side-by-side sessions on top.
Most people end up with two: the mobile app and one of web or desktop. Everything syncs through the account, so a conversation started on an iPhone continues on a laptop without any export step.
#How do I install Claude Code?
Claude Code is a command-line agent, not a GUI app, and it installs the way developer tools normally do. The native installer is the shortest path and is the only route that auto-updates in the background:
# macOS, Linux, WSL
curl -fsSL https://claude.ai/install.sh | bash
# Windows PowerShell
irm https://claude.ai/install.ps1 | iex
Package managers work too, and are the better choice on a machine you manage with configuration tooling. None of them auto-update by default, so you will need to run your own upgrade step:
| Manager | Command | Auto-updates? |
|---|---|---|
| Homebrew | brew install --cask claude-code | No |
| WinGet | winget install Anthropic.ClaudeCode | No |
| npm | npm install -g @anthropic-ai/claude-code | No - needs Node.js 22+ |
| apt / dnf / apk | Signed repositories hosted at downloads.claude.ai | Through your package manager |
| Native installer | curl -fsSL https://claude.ai/install.sh | bash | Yes, in the background |
System requirements are modest: macOS 13.0+, Windows 10 1809+ or Windows Server 2019+, Ubuntu 20.04+, Debian 10+ or Alpine 3.19+, on x64 or ARM64, with at least 4 GB of RAM and an internet connection. Two release channels exist - latest by default, and stable, which trails by roughly a week and skips major regressions. Release binaries are GPG-signed; macOS builds are notarized and signed by “Anthropic PBC”. If an install misbehaves, claude doctor prints a read-only diagnostic of your installation and settings.
#Installing the API SDKs
The SDKs are unrelated to the subscription apps. They talk to platform.claude.com using an API key and are billed per token, which is a separate bill from Pro or Max. Install one, export a key, and the first call is four lines:
pip install anthropic
from anthropic import Anthropic
client = Anthropic() # reads ANTHROPIC_API_KEY
msg = client.messages.create(
model="claude-sonnet-5",
max_tokens=1024,
messages=[{"role": "user", "content": "Summarise this contract clause."}],
)
print(msg.content[0].text)
The TypeScript package is @anthropic-ai/sdk and takes the same shape. Community SDKs exist for other languages but are not maintained by Anthropic. Rate limits, prompt caching and the Batch API - the three things that actually determine your bill - are covered on the Claude API page,.
#Legacy to current: updating hardcoded model strings
The most common reason a working Claude integration suddenly returns errors is a retired model ID. Anthropic removes old models on a published schedule, and a call to a retired string fails outright rather than silently falling back. If you have code written before 2026, check it against this table.
| Legacy model | Status | Retired on | Replace with |
|---|---|---|---|
| Claude Sonnet 3.7 | Retired | 19 February 2026 | claude-sonnet-5 |
| Claude Haiku 3.5 | Retired | 19 February 2026 | claude-haiku-4-5 |
| Claude Haiku 3 | Retired | 20 April 2026 | claude-haiku-4-5 |
| Claude Opus 4 | Retired | 15 June 2026 | claude-opus-5 |
| Claude Sonnet 4 | Retired | 15 June 2026 | claude-sonnet-5 |
| Claude Opus 4.1 | Retired | 5 August 2026 | claude-opus-5 |
| Claude Sonnet 4.5 | Legacy | No sooner than 29 September 2026 | claude-sonnet-5 |
| Claude Sonnet 4.6, Opus 4.6 / 4.7 / 4.8 | Available | - | Move to claude-opus-5 when convenient |
| Claude Haiku 4.5 | Available | - | Current: claude-haiku-4-5-20251001 |
Identifiers such as claude-3-sonnet-20240229 circulate widely in blog posts and Stack Overflow answers from 2024. They have not worked for months. If you copy a snippet from anywhere, replace the model ID before you run it - the current list is on the Claude models page, with per-model detail for Opus 5 and Sonnet 5.
Migration is usually a one-line change, but two behavioural differences bite. First, temperature, top_p and top_k no longer work on Opus 4.7+ and Sonnet 5 - passing a non-default value returns a 400 error. Second, thinking is on by default on the current models and its depth is set by an effort parameter rather than a toggle. Both are explained on the extended and adaptive thinking page.
#What Anthropic does not ship
Worth knowing before you go looking. As of August 2026 there is no official Claude app for Windows on ARM Linux, no Firefox or Safari extension, no self-hosted or offline build, and no iPad-only variant - the iOS app covers iPhone and iPad from one binary. There is also no separate Claude Code subscription: it is bundled into the Pro, Max, Team and Enterprise plans, and there is no way to buy it alone.
Anything advertising a “Claude AI Pro crack”, a modified APK or a desktop installer from a download aggregator is malware or a scam. Anthropic distributes only through claude.com, claude.ai, the two mobile app stores, the Chrome Web Store, the Microsoft marketplaces and its own signed package repositories. If you need to connect Claude to your own systems, the supported mechanism is the Model Context Protocol - see MCP and Claude agents.
#Frequently asked questions
Is the Claude app free to download?
Yes. Every Claude client - web, iOS, Android, macOS, Windows, Linux beta and the Claude Code CLI - costs nothing to install. What you pay for is the plan attached to your account. Chat works on the free plan; Claude Code, Cowork and the Microsoft 365 add-ins require a paid subscription.
What are the system requirements for the Claude desktop app?
macOS 11 or later, Windows 10 or later on x64 or ARM64, or Linux in beta on Ubuntu 22.04 LTS and above or Debian 12 and above. Claude Code has different requirements: macOS 13+, Windows 10 build 1809+, or Ubuntu 20.04+, with at least 4 GB of RAM.
Can I install Claude Code without npm?
Yes. The native installer script at claude.ai/install.sh needs no Node.js at all and auto-updates in the background. Homebrew, WinGet and signed apt, dnf and apk repositories are also supported. The npm package requires Node.js 22 or newer and does not auto-update.
Does the Android app work on ChromeOS?
Yes. Anthropic's download page lists ChromeOS support for the Android build, so Chromebooks that support Google Play can install the same app. There is no separate ChromeOS package, and no Chrome extension is needed for chat - the Chrome extension is a browsing agent for paid plans.
My API calls suddenly return an error about the model. What happened?
Almost certainly a retired model ID. Anthropic removed Sonnet 3.7 and Haiku 3.5 on 19 February 2026, Haiku 3 on 20 April, Opus 4 and Sonnet 4 on 15 June, and Opus 4.1 on 5 August 2026. Retired strings return an error rather than falling back. Update the identifier.
Does claudiai.com host the Claude installers?
No. This is an independent reference site with no affiliation to Anthropic. Every link here points to Anthropic's own properties or the official app stores. Downloads offered anywhere else, including modified APKs and third-party desktop installers, are not from Anthropic and should not be trusted.
Platform support, install commands and system requirements checked on 21 August 2026 against claude.com/download, code.claude.com/docs/en/setup and the Claude Desktop install guide. Model retirement dates come from platform.claude.com/docs. Anthropic changes all of these without notice.