How to Download Claude on PC: Windows Setup Guide
If you're searching for how to download Claude on PC, you want the official Windows desktop app installed and working as fast as possible. Anthropic ships a native Windows client for Claude, and getting it running takes about five minutes: download the installer, sign in with your Anthropic account, and start chatting. This guide walks through the exact steps, the system requirements, and what your options are if the desktop app isn't the right fit for what you're building.
There's also a second, less obvious meaning behind this search: some people typing "download Claude on PC" are actually looking for a way to run Claude programmatically on their machine — inside a script, a build pipeline, or an app — rather than as a chat window. We'll cover that too, since the desktop app and a Claude-powered integration solve very different problems.
Downloading the Claude Desktop App for Windows
Anthropic distributes the Windows app directly from claude.ai. There is no Microsoft Store listing — you download an installer file and run it yourself.
- Go to claude.ai/download in your browser.
- Choose the Windows option. The site detects your OS automatically, but you can also pick it manually if it guesses wrong.
- Save the
.exeinstaller to your Downloads folder. - Run the installer. Windows SmartScreen may show a warning for new installers — click "More info" then "Run anyway" if you trust the source (verify you downloaded from the official Anthropic domain).
- Once installed, launch Claude from the Start menu or desktop shortcut.
- Sign in with your existing Anthropic account, or create one if you don't have one yet.
The app installs like any standard Windows program and updates itself in the background, so you shouldn't need to manually reinstall for future versions.
System Requirements
The Claude desktop app is lightweight compared to most AI tools because the actual model inference happens in Anthropic's cloud, not on your machine. Practically, you need:
- Windows 10 or later (64-bit)
- A stable internet connection — nothing runs locally, so offline use isn't supported
- A modern browser-equivalent runtime, which the installer bundles automatically
- An Anthropic account with either a free tier or a paid Claude subscription (Pro, Max, etc.) depending on what usage limits you need
There's no GPU requirement and no meaningful disk space concern — this isn't a local LLM you're installing, it's a client that talks to Claude's servers.
If the Installer Won't Run
A few common snags and fixes:
- "This app can't run on your PC" — you likely downloaded the wrong architecture. Re-download from claude.ai/download and make sure it detected Windows correctly.
- Corporate/managed device blocks the install — some organizations restrict
.exeinstalls outside an approved software catalog. In that case you can usually still use Claude through a browser at claude.ai without installing anything. - Sign-in loop or blank window — this is almost always a network/firewall issue blocking Anthropic's API domains. Try a different network or temporarily disable VPN/proxy software to confirm.
If none of that works, the browser version at claude.ai is functionally identical to the desktop app for everyday use — the desktop client mainly adds a persistent taskbar presence, native notifications, and slightly snappier window management.
When You Don't Actually Want the Desktop App
If your real goal is to use Claude inside a Windows application, a script, a Discord bot, a customer support tool, or any other piece of software you're building, downloading the desktop chat app won't help — it has no plugin system and no way to call it from your own code. What you need instead is API access to Claude, which is a completely separate product from the desktop app.
Getting raw API access directly from Anthropic requires setting up a developer account, generating API keys, and building your own request/response handling, retry logic, and usage tracking from scratch. That's the right path if you're comfortable maintaining backend infrastructure.
If you'd rather skip that setup, SubToAPI turns your existing Claude access into a clean HTTPS API without you building any of that plumbing yourself. You get an application key (sub_live_...), streaming responses, tool use, and usage metadata through one dashboard — no separate billing relationship with a model provider to manage. A basic request looks like this:
curl https://api.subtoapi.app/v1/messages \
-H "Authorization: Bearer $SUBTOAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-3-5-sonnet",
"max_tokens": 1024,
"messages": [
{"role": "user", "content": "Summarize this changelog in 3 bullet points."}
]
}'
That's the same underlying model you'd chat with in the desktop app, just accessible from your own code instead of a window on your desktop. Plans start at €9/month for solo use, with team seats at €19 and €49 for higher-volume scale usage — see /pricing for details, or check the quickstart to get a key running in a few minutes.
Desktop App vs. API: Quick Comparison
- Desktop app: best for personal use, drafting, research, and everyday chat. Requires no coding. One conversation at a time, tied to your account.
- API access (direct or via SubToAPI): best for building products, automating workflows, or integrating Claude into an existing app. Requires code but scales to unlimited concurrent requests and can be embedded anywhere.
Most developers end up using both — the desktop app for personal work and quick questions, and an API integration for anything they're shipping to users. If you're evaluating the API path, the docs on messages and streaming cover the request formats in detail, and /docs/tools explains how to let Claude call functions in your own codebase.
questions
Is the Claude Windows app free to download? Yes, the installer itself is free. You still need an Anthropic account, and heavy usage may require a paid Claude plan depending on your message limits.
Can I run Claude offline on my PC once installed? No. The desktop app is a client for Anthropic's cloud-hosted models — it requires an internet connection every time you use it, since no model runs locally.
What's the difference between downloading Claude and using the Claude API? The desktop app is a chat interface for personal use. The API lets you call Claude from your own code to build automated tools or products — that's a separate setup, covered in the /docs/quickstart guide.