Max Techera.

Architecting Production AI Since 2012

Site

CoursesBlogMy StoryFAQ

Social

Legal

PrivacyTerms

© 2026 Max Techera. All rights reserved.

System Stable // Uruguay to Global
Max Techera.
CoursesBlog
Back to course

Claude Code Mastery: From 0 to 10x Developer

Progress0/13
1. Foundations
  • 1
    Introduction to Claude Code
  • 2
    Installation and Configuration
2. Working Modes
  • 1
    Default Mode (Interactive)
  • 2
    Auto Mode (YOLO)
  • 3
    Plan Mode and Extended Thinking
3. Memory Systems
  • 1
    The CLAUDE.md System
  • 2
    Context Management
4. Advanced Techniques
  • 1
    Sub-agents
  • 2
    MCP Integrations
  • 3
    Hooks
5. Production
  • 1
    Testing with Claude
  • 2
    CI/CD Pipelines
6. Action Plan
  • 1
    The 7-Day Plan
0%
CoursesClaude Code Mastery: From 0 to 10x DeveloperFoundationsInstallation and Configuration
Foundations

Installation and Configuration

Step-by-step guide to installing Claude Code, authentication options, pricing, and getting your first project running.

1.405 min

Installation and Configuration

Let's get Claude Code installed and configured on your machine.

Prerequisites

Before installing, make sure you have:

  • Node.js 18+ - Claude Code requires Node.js
  • A terminal - Works with any terminal (iTerm, Terminal, Windows Terminal, etc.)
  • Git - For version control integration

Installation

Install Claude Code globally with npm:

npm install -g @anthropic-ai/claude-code

Or with your preferred package manager:

# Yarn
yarn global add @anthropic-ai/claude-code
 
# pnpm
pnpm add -g @anthropic-ai/claude-code

Authentication

Claude Code offers multiple authentication methods:

1. Anthropic API Key (Recommended for individuals)

export ANTHROPIC_API_KEY=your-api-key

Get your API key from console.anthropic.com.

2. Claude Pro/Max Subscription

If you have a Claude Pro or Max subscription, you can authenticate through the browser:

claude
# Follow the browser authentication flow

3. Enterprise (AWS Bedrock / Google Vertex)

For enterprise deployments, configure your cloud provider credentials.

Pricing

Claude Code uses the same pricing as the Claude API:

  • Input tokens: $3 per million tokens
  • Output tokens: $15 per million tokens
  • With Claude Pro/Max: Included in subscription

Typical usage costs $5-20/month for active developers.

First Run

Navigate to a project and start Claude Code:

cd your-project
claude

Claude will automatically:

  1. Index your project structure
  2. Read any existing CLAUDE.md file
  3. Start an interactive session

Verify Installation

Test that everything works:

claude --version

Try a simple command:

> What files are in this project?

Next Steps

Congratulations! You now have Claude Code installed. In the next module, you'll learn about the 3 working modes and when to use each one.

Previous
Introduction to Claude Code
Next
Default Mode (Interactive)