Claude
code.claude.com › docs › en › setup
Set up Claude Code - Claude Code Docs
# Install stable version (default) curl -fsSL https://claude.ai/install.sh | bash # Install latest version curl -fsSL https://claude.ai/install.sh | bash -s latest # Install specific version number curl -fsSL https://claude.ai/install.sh | bash ...
Videos
05:07
How to Install & Run Claude Code on Windows - YouTube
05:00
Installing and using Claude code on Windows - YouTube
08:35
Claude Code on Windows - EASY Setup & Cursor Integration ...
How to Install Claude Code (for beginners) - YouTube
03:25
How to install Claude Code on Windows - YouTube
Claude
claude.ai › public › artifacts › 5a119e06-02a1-4810-8681-ac7b1cf28e3e
Complete Claude Code Installation Guide for Windows 10
WSL2 provides the Linux environment necessary for Claude Code to function properly. Open PowerShell as Administrator: Right-click the Start button · Select "Windows PowerShell (Admin)" Click "Yes" if prompted by User Account Control · Install WSL2: powershell ·
Claude
claude.ai › public › artifacts › d5297b60-4c2c-4378-879b-31cc75abdc98
Complete Claude Code Installation Guide for Windows | Claude
# From Windows PowerShell wsl --shutdown wsl · bash · # 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 · bash · # 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 ·
Medium
medium.com › @WalterSchaerer › from-zero-to-prompting-setting-up-claude-code-on-your-windows-machine-710a32785bee
From Zero to Prompting: Setting Up Claude Code on Your Windows Machine | by Walter Schärer | Medium
July 18, 2025 - To set up Claude Code on Windows, ... (WSL), install Node.js and npm, and link your Anthropic account. Below is a step-by-step guide to get started on Microsoft Windows (on iOS and Linux Claude Code runs natively, you don’t need the WSL step). To begin, enable WSL by opening your Windows PowerShell (cmd) as ...
Smartscope
smartscope.blog › en › generative-ai › claude › claude-code-windows-native-installation
Claude Code Windows Install: No WSL Required (3min PowerShell Setup) - SmartScope
Native Windows Claude Code installation in 3min. No WSL, runs in PowerShell. Auto Node.js/Git setup, clipboard image paste fix. Step-by-step guide 2025.
Reddit
reddit.com › r/claudeai › made claude code work natively on windows
r/ClaudeAI on Reddit: Made Claude Code work natively on Windows
July 7, 2025 -
Just shipped win-claude-code - a wrapper that lets you run Anthropic's Claude Code directly on Windows without WSL.
npm install -g anthropic-ai/claude-code --ignore-scripts npx win-claude-code@latest
That's it. Works with PowerShell, CMD, Windows Terminal - whatever you prefer.
Built this because I got tired of WSL setup just to use Claude Code. Figured other Windows devs might find it useful too.
GitHub: https://github.com/somersby10ml/win-claude-code
Would love feedback if anyone tries it out! 🚀
Top answer 1 of 5
15
Nice work. It works but a bit buggy, I'm seeing freezing when it launches. And commands dont work like /doctor /migrate-installation etc. And its not reading my env vars. It is much slower, but I see you have that listed under Known Issues.. Also, this is the same amount of work as setting up WSL except now I dont have a cool terminal like Oh My Zsh as my default shell.
2 of 5
3
omg finally, take my upvote
Medium
gommans.co.uk › claude-code-on-powershell-355cc5490431
claude-code on PowerShell
April 22, 2025 - While exploring Claude code this week (in beta) I thought I would share some of the setup snags I encountered setting up on Windows the way I want (invoking from Powershell). The general getting started is here: Claude Code overview — Anthropic ... Claude’s instructions for wsl (Windows Subsystem for Linux) are fairly straight-forward though gloss over packages and paths which will be the focus of this article. You need wsl and we can check we have it installed and a running container like this (for installation, consider sources like: Install WSL | Microsoft Learn):
Reddit
reddit.com › r/claudeai › the new windows-native claude code; can you call `claude`?
The new Windows-native Claude Code; can you call `claude`? : r/ClaudeAI
July 21, 2025 - You probably won't want to type the full path to the ps1/cmd scripts every time you start CC so you can set up an alias in your powershell/pwsh Profile.ps1 (this is like a .bashrc or .zshrc for powershell/pwsh if you haven't used it before-- I hadn't): Set-Alias -Name claude -Value "C:\Users\{you}\.claude\local\node_modules\.bin\claude.ps1" Restart pwsh and you should be able to call the local installation of CC too with just claude Continue this thread
Claude
claude.ai › public › artifacts › 03a4aa0c-67b2-427f-838e-63770900bf1d
Claude Code Installation Guide for Windows 11
Once PowerShell opens with administrator privileges, you'll see "Administrator: Windows PowerShell" in the title bar. The prompt will typically show something like PS C:\\Windows\\system32>. Now run the following command: ... This command does several things automatically: it enables the required Windows features (Virtual Machine Platform and Windows Subsystem for Linux), downloads and installs the WSL2 kernel update, sets WSL2 as the default version, and installs Ubuntu as the default Linux distribution.
Medium
drlee.io › let-claude-code-write-your-next-app-in-minutes-yes-on-windows-7e40a5e29db6
Let Claude Code Write Your Next App in Minutes (Yes, on Windows) | by Dr. Ernesto Lee | Nov, 2025 | Medium
November 15, 2025 - The installation script is a PowerShell one-liner that handles everything. ... The Micro-Why: This script does four critical things: downloads the Claude Code binary, adds it to your system PATH (so you can run claude from anywhere), sets up the configuration directory, and creates the authentication flow. Doing this manually would require editing environment variables and understanding Windows system architecture.
GitHub
github.com › aaronvstory › claude-code-windows-setup
GitHub - aaronvstory/claude-code-windows-setup: Production-ready Claude Code setup for Windows with path translation, Git Bash integration, and right-click context menu
Windows PowerShell 5.1 (fallback) - Works but may have minor issues · Installer checks and warns if using old version. Built Upon: Claude Code by Anthropic · win-claude-code by somersby10ml · Enhanced With: Production-tested launcher scripts · Windows-specific path fixes ·
Author aaronvstory
Medium
medium.com › ai-insights-cobet › comprehensive-guide-to-setting-up-claude-code-on-windows-using-wsl-d3a3f3b5a128
Comprehensive Guide to Setting Up Claude Code on Windows Using WSL | by azhar | azhar labs | Medium
March 27, 2025 - Git: A version control system for managing code repositories. Ripgrep: A line-oriented search tool that recursively searches directories for a regex pattern. ... This command installs WSL with the default Linux distribution. If WSL is already installed, ensure it’s updated: ... Create a new user account and password when prompted. ... This command installs Claude Code globally on your system.
Obsidian
publish.obsidian.md › eriktuck › guides › The+definitive+guide+to+installing+Claude+Code+on+Windows
The definitive guide to installing Claude Code on Windows - Obsidian Publish
The definitive guide to installing Claude Code on Windows - Powered by Obsidian Publish.
Anthropic
docs.anthropic.com › en › docs › claude-code › quickstart
Quickstart - Claude Code Docs
To install Claude Code, use one ... -fsSL https://claude.ai/install.sh | bash · Windows PowerShell: Copy · Ask AI · irm https://claude.ai/install.ps1 | iex ·...