Skip to main content
🎤 Luca Berton is speaking at Red Hat Summit & KubeCon EU 2026!Learn more

Setup & the AI-First Mindset

Code Snippets

Install Claude Code (native installer)bash
# macOS, Linux, or Windows (WSL)
curl -fsSL https://claude.ai/install.sh | bash

# Prefer npm? (requires Node.js 18+)
npm install -g @anthropic-ai/claude-code
Verify & sign inbash
claude --version
claude doctor   # deeper check of install + configuration
claude          # start in any project folder; follow the browser prompt
Capture your environmentbash
mkdir -p module-01
{ python3 --version; node --version; git --version; } > module-01/environment.txt