Skip to content
Official Docs

Quickstart

Welcome to Claude Code!

This quickstart guide will have you using AI-powered coding assistance in a few minutes. By the end, you'll understand how to use Claude Code for common development tasks.

Before you begin

Make sure you have:

INFO

This guide covers the terminal CLI. Claude Code is also available on the web, as a desktop app, in VS Code and JetBrains IDEs, in Slack, and in CI/CD with GitHub Actions and GitLab. See all interfaces.

Step 1: Install Claude Code

To install Claude Code, use one of the following methods:

macOS, Linux, WSL:

bash
curl -fsSL https://claude.ai/install.sh | bash

Windows PowerShell:

powershell
irm https://claude.ai/install.ps1 | iex

Windows CMD:

batch
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

Windows requires Git for Windows. Install it first if you don't have it.

INFO

Native installations automatically update in the background to keep you on the latest version.

Homebrew

bash
brew install --cask claude-code

INFO

Homebrew installations do not auto-update. Run brew upgrade claude-code periodically to get the latest features and security fixes.

WinGet

powershell
winget install Anthropic.ClaudeCode

INFO

WinGet installations do not auto-update. Run winget upgrade Anthropic.ClaudeCode periodically to get the latest features and security fixes.

Step 2: Log in to your account

Claude Code requires an account to use. When you start an interactive session with the claude command, you'll need to log in:

bash
claude
# You'll be prompted to log in on first use
bash
/login
# Follow the prompts to log in with your account

You can log in using any of these account types:

Once logged in, your credentials are stored and you won't need to log in again. To switch accounts later, use the /login command.

Step 3: Start your first session

Open your terminal in any project directory and start Claude Code:

bash
cd /path/to/your/project
claude

You'll see the Claude Code welcome screen with your session information, recent conversations, and latest updates. Type /help for available commands or /resume to continue a previous conversation.

TIP

After logging in (Step 2), your credentials are stored on your system. Learn more in Credential Management.

Step 4: Ask your first question

Let's start with understanding your codebase. Try one of these commands:

text
what does this project do?

Claude will analyze your files and provide a summary. You can also ask more specific questions:

text
what technologies does this project use?
text
where is the main entry point?
text
explain the folder structure

You can also ask Claude about its own capabilities:

text
what can Claude Code do?
text
how do I create custom skills in Claude Code?
text
can Claude Code work with Docker?

INFO

Claude Code reads your project files as needed. You don't have to manually add context.

Step 5: Make your first code change

Now let's make Claude Code do some actual coding. Try a simple task:

text
add a hello world function to the main file

Claude Code will:

  1. Find the appropriate file
  2. Show you the proposed changes
  3. Ask for your approval
  4. Make the edit

INFO

Claude Code always asks for permission before modifying files. You can approve individual changes or enable "Accept all" mode for a session.

Step 6: Use Git with Claude Code

Claude Code makes Git operations conversational:

text
what files have I changed?
text
commit my changes with a descriptive message

You can also prompt for more complex Git operations:

text
create a new branch called feature/quickstart
text
show me the last 5 commits
text
help me resolve merge conflicts

Step 7: Fix a bug or add a feature

Claude is proficient at debugging and feature implementation.

Describe what you want in natural language:

text
add input validation to the user registration form

Or fix existing issues:

text
there's a bug where users can submit empty forms - fix it

Claude Code will:

  • Locate the relevant code
  • Understand the context
  • Implement a solution
  • Run tests if available

Step 8: Test out other common workflows

There are a number of ways to work with Claude:

Refactor code

text
refactor the authentication module to use async/await instead of callbacks

Write tests

text
write unit tests for the calculator functions

Update documentation

text
update the README with installation instructions

Code review

text
review my changes and suggest improvements

TIP

Talk to Claude like you would a helpful colleague. Describe what you want to achieve, and it will help you get there.

Essential commands

Here are the most important commands for daily use:

CommandWhat it doesExample
claudeStart interactive modeclaude
claude "task"Run a one-time taskclaude "fix the build error"
claude -p "query"Run one-off query, then exitclaude -p "explain this function"
claude -cContinue most recent conversation in current directoryclaude -c
claude -rResume a previous conversationclaude -r
claude commitCreate a Git commitclaude commit
/clearClear conversation history/clear
/helpShow available commands/help
exit or Ctrl+CExit Claude Codeexit

See the CLI reference for a complete list of commands.

Pro tips for beginners

For more, see best practices and common workflows.

Be specific with your requests

Instead of: "fix the bug"

Try: "fix the login bug where users see a blank screen after entering wrong credentials"

Use step-by-step instructions

Break complex tasks into steps:

text
1. create a new database table for user profiles
2. create an API endpoint to get and update user profiles
3. build a webpage that allows users to see and edit their information
Let Claude explore first

Before making changes, let Claude understand your code:

text
analyze the database schema
text
build a dashboard showing products that are most frequently returned by our UK customers
Save time with shortcuts
  • Press ? to see all available keyboard shortcuts
  • Use Tab for command completion
  • Press ↑ for command history
  • Type / to see all commands and skills

What's next?

Now that you've learned the basics, explore more advanced features:

Getting help

  • In Claude Code: Type /help or ask "how do I..."
  • Documentation: You're here! Browse other guides
  • Community: Join our Discord for tips and support

基于 Claude Code v2.1.88 开源快照的深度分析