Skip to main content
Claude Code is a terminal-based coding agent that understands your codebase and helps you code faster through natural language commands - executing routine tasks, explaining complex code, and handling git workflows. Claude Code becomes even more powerful with Coding Plan — Pro plan offers more than Claude Pro (20 USD/month), Max plan offers more than Claude Max (200 USD/month). Code faster, debug smarter, and manage workflows seamlessly with more tokens and higher reliability.

Step 1: Install Claude Code

If you encounter permission errors during installation, try using sudo (MacOS/Linux) or run command prompt as administrator (Windows).

Step 2: Configure Coding Plan

1

Get API Key

2

Configure Environment Variables

There are 2 ways to configure: via settings.json file (recommended) or via environment variable export.

Step 3: Get Started with Claude Code

After configuration, you can start using Claude Code in the terminal:
cd your-project-directory
claude
If you’re using Windows, you need to run claude using Git Bash or Ubuntu (WSL) for the first time.
When running Claude Code for the first time, you may see a security prompt asking for file access permission:
Do you trust the files in this folder?

 Claude Code may read, write, or execute files contained in this directory. 
 This can pose security risks, so only use files from trusted sources.

 ❯ 1. Yes, proceed
   2. No, exit
Select “Yes, proceed” and press Enter to grant Claude Code access to the files in your project directory.

FAQ

How to Change the Model in Use

Mapping between Claude Code internal model environment variables and models:
ModelMultiplierContext
claude-sonnet-4-51x200K tokens
claude-sonnet-4-5-202509291x200K tokens
claude-opus-4-5-202511012x200K tokens
gpt-5-mini0x (free-using)128K tokens
glm-4.60x (free-using)200K tokens
glm-4.70x (free-using)200K tokens
gpt-5-mini, glm-4.6 and glm-4.7 are free-using models with unlimited usage when subscribing to Coding Plan at VibeCodeCheap.
If you need to adjust, you can directly edit the configuration file ~/.claude/settings.json:
{
  "env": {
    "ANTHROPIC_DEFAULT_HAIKU_MODEL": "claude-haiku-4-5-20251001",
    "ANTHROPIC_DEFAULT_SONNET_MODEL": "claude-sonnet-4-5-20250929",
    "ANTHROPIC_DEFAULT_OPUS_MODEL": "claude-opus-4-5-20251101"
  }
}

How to Check the Current Model Status

Open a new terminal and run claude, enter /help to see all available commands.
  • Enter /status to check the current model status.
  • Enter /models to list all available models.

Manual Configuration Not Working

If you’ve edited the ~/.claude/settings.json file but changes don’t take effect:
  • Close all Claude Code windows, open a new terminal and run claude again.
  • If still not working, try deleting the ~/.claude/settings.json file and reconfigure.
  • Confirm the JSON format is correct, check variable names and ensure no missing or extra commas.
We recommend using the latest version of Claude Code:
# Check current version
claude --version

# Upgrade to latest version
claude update