🌐
Claude
claude.com › download
Download Claude | Claude
Download Claude for desktop and mobile. Access AI assistance natively on Mac, Windows, iOS, and Android across all your devices.
🌐
Claude
code.claude.com › docs › en › setup
Set up Claude Code - Claude Code Docs
Claude Code automatically keeps itself up to date to ensure you have the latest features and security fixes. Update checks: Performed on startup and periodically while running · Update process: Downloads and installs automatically in the background
People also ask

How do I connect Claude to my tools?
Connectors allow Claude to work with tools like your apps and databases. Web-based connectors like Google Drive and Slack work wherever you’re using Claude—web, desktop, or mobile. On mobile, Claude can also connect to device-specific apps like Maps and iMessage. The desktop app also supports desktop extensions, which are locally installed and provide access to your local file systems, browsers, and native applications.
🌐
claude.com
claude.com › download
Download Claude | Claude
How does Claude Desktop work with the Chrome extension?
Claude in Chrome is included as a connector and is ready to use when you enable it. Turn it on in any conversation and Claude can navigate, click, and fill forms in your browser from the Desktop app. Start a task without switching windows. Learn more about Claude in Chrome.
🌐
claude.com
claude.com › download
Download Claude | Claude
What’s the difference between the desktop app and using Claude in my browser?
The desktop app is always accessible from your dock and includes quick entry for instant access from anywhere in your system. You also get desktop extensions to connect Claude with your local tools and files.
🌐
claude.com
claude.com › download
Download Claude | Claude
🌐
Model Context Protocol
modelcontextprotocol.io › docs › develop › connect-local-servers
Connect to local MCP servers - Model Context Protocol
By the end of this tutorial, Claude will be able to interact with files on your computer, create new documents, organize folders, and search through your file system—all with your explicit permission for each action. Before starting this tutorial, ensure you have the following installed on your system: Download and install Claude Desktop for your operating system.
🌐
KDnuggets
kdnuggets.com › using-claude-3-7-locally
Using Claude 3.7 Locally - KDnuggets
To use the Anthropic API locally with a proper chatbot application, we will download and install Msty. It is currently my favorite application because it provides a lot of features and easy integrations. Once Msty is installed, launch the application and go to Settings. Click on the “Remote Model Providers.” · Click on “+ Add Remote Model Provider,” select Claude as the provider, add your API key, and choose the Claude 3.7 Sonnet model.
🌐
Claude
claude.ai
Claude
Talk with Claude, an AI assistant from Anthropic
🌐
Shawnmayzes
shawnmayzes.com › product-engineering › running-claude-code-with-local-llm
Running Claude Code with a Local LLM: A Step-by-Step Guide
To use Claude Code with a local LLM, we will be using code-llmss, an open-source project designed to provide local AI-assisted coding capabilities. Follow these steps to get started: First, make sure your system has the required dependencies installed. You’ll need: ... The next step is to download and set up a large language model.
🌐
Medium
medium.com › @luongnv89 › setting-up-claude-code-locally-with-a-powerful-open-source-model-a-step-by-step-guide-for-mac-84cf9ab7302f
Setting Up Claude Code Locally with a Powerful Open-Source Model: A Step-by-Step Guide for Mac Users | by Luong NGUYEN | Nov, 2025 | Medium
November 20, 2025 - Verify the install: Type claude—it might ask for an Anthropic key, but we'll override that soon. That’s it for installation. Now, we need to trick it into using our local model instead of Anthropic’s cloud API.
Find elsewhere
🌐
Claude AI
claude-ai.chat › home › download
Download - Claude AI
November 8, 2025 - These apps let you run Claude AI as a standalone program on your computer, offering some added benefits like quick access and deeper integration with your local system. Windows (10 or later): Claude’s desktop client supports Windows 10 and above. You can download the official Claude for Windows installer (available in both standard 64-bit and ARM64 versions) from Anthropic’s website.
🌐
Claude
claude.com › product › claude-code
Claude Code - AI coding agent for terminal & IDE | Claude
You can access Claude Code with a Claude Pro or Max plan, a Team or Enterprise plan premium seat, or a Claude Console account. Download Claude Code and sign in with your respective Claude or Console credentials.
🌐
Claude AI Hub
claudeaihub.com › claude-ai-download
Claude AI Download - Access Options & Installation Guide
October 30, 2024 - You can access Claude AI directly through the web browser at claude.ai without needing a specific download. Alternatively, use Docker to set it up locally.
🌐
GitHub
github.com › runekaagaard › claude-local-files
GitHub - runekaagaard/claude-local-files: Serve local files to Claude Desktop via HTTPS for use in code artifacts.
Serve local files to Claude Desktop via HTTPS for use in code artifacts. - runekaagaard/claude-local-files
Starred by 12 users
Forked by 3 users
Languages   PowerShell 83.3% | Shell 16.7%
🌐
Reddit
reddit.com › r/claudeai › local claude code download disappears
r/ClaudeAI on Reddit: Local Claude Code download disappears
August 8, 2025 -

I'm on Mac OS and installed using the script.

# Install stable version (default)
curl -fsSL https://claude.ai/install.sh | bash

I then add the dir to the PATH: `PATH="~/.local/bin:$PATH"`

I can confirm I see the file at `~/.local/bin/claude`

Then I'll startup `claude`, use for about an hour then when I exit and retry `claude` command, the file at `~/.local/bin/claude` does not exist.

I `ls ~/.local/bin/claude` and there's no file there.

I would then reinstall using the curl command and the same thing happens when I exit Claude Code.

Is this happening to anyone else or can anyone help? Apologies if this has been solved but i didn't find any answer with Googling.

🌐
Anthropic
anthropic.com › engineering › desktop-extensions
One-click MCP server installation for Claude Desktop
For MCP server developers: Review our developer documentation – or dive right in by running the following commands in your local MCP servers’ directory: npm install -g @anthropic-ai/mcpb mcpb init mcpb pack ... For Claude Desktop users: Update to the latest version and look for the Extensions section in Settings
🌐
Claude
support.claude.com › en › articles › 10949351-getting-started-with-local-mcp-servers-on-claude-desktop
Getting Started with Local MCP Servers on Claude Desktop | Claude Help Center
Note: We’re building a directory ... desktop extensions interest form to share more information with us. Navigate to Settings > Extensions on Claude Desktop....
🌐
Justin Searls
justin.searls.co › posts › how-to-run-claude-code-against-a-free-local-model
How to run Claude Code against a free local model
Thirty minutes later and I have a totally-free, locally-hosted version of the Claude Code experience demonstrated in the video above working on my machine (an MacBook Pro with M4 Pro and 48GB of RAM). I figured other people would like to try this too, so here are step-by-step instructions.
🌐
Claude
claude.ai › public › artifacts › d5297b60-4c2c-4378-879b-31cc75abdc98
Complete Claude Code Installation Guide for Windows | Claude
# Check PATH is clean (no Windows paths) echo $PATH # Should only show Linux paths like: # /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ... # Install Node.js from Ubuntu repository sudo apt install -y nodejs npm # Verify installation node --version npm --version # Configure npm global directory mkdir ~/.npm-global npm config set prefix '~/.npm-global' echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc source ~/.bashrc ... # Install Claude Code globally npm install -g @anthropic-ai/claude-code # Verify installation claude --version