Videos
Does Claude Code work with the Claude desktop app?
Is Claude Code secure?
What are the system requirements to run Claude Code?
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! 🚀
"Claude Code is not supported on Windows."
npm error Claude Code requires macOS or Linux to run properly.
After getting an email from Anthropic today I tried to install Claude Code and got this error.
I was also skeptical that is would spend a lot of tokens. Is this true? Does it not run a PC?
Does anyone have a reliable good IDE I can use to vibe code?
I've tried Windsurf and Cursor with very mixed results. I was hopeful that an MCP might help also but they seem very flaky on PCs. All the demos of them that work are on Macs.
Does anyone have any suggestions.
Thank you.
Hello,
I was struggling to get Claude Code working on Windows with my .NET projects while maintaining proper IDE support. The core problem is that Claude Code requires WSL to run on Windows. If you copy your project files into a WSL folder, you lose crucial IDE integration.
Here's the correct way to do it without copying your code into a WSL folder (if you weren't already aware, like me!):
Open your favorite IDE and your project.
Open the terminal within your IDE.
Navigate to your project directory (e.g.,
C:\MyProject).Type the following command:
wsl claude
Enjoy!