mirror of
https://github.com/anthropics/claude-code.git
synced 2026-04-25 14:32:42 +00:00
Compare commits
4 Commits
ci/update-
...
docs/updat
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b640d94a49 | ||
|
|
b17c088cdc | ||
|
|
a856c62014 | ||
|
|
0359f24538 |
@@ -1,5 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.1.5
|
||||||
|
|
||||||
|
- Added `CLAUDE_CODE_TMPDIR` environment variable to override the temp directory used for internal temp files, useful for environments with custom temp directory requirements
|
||||||
|
|
||||||
|
## 2.1.4
|
||||||
|
|
||||||
|
- Added `CLAUDE_CODE_DISABLE_BACKGROUND_TASKS` environment variable to disable all background task functionality including auto-backgrounding and the Ctrl+B shortcut
|
||||||
|
- Fixed "Help improve Claude" setting fetch to refresh OAuth and retry when it fails due to a stale OAuth token
|
||||||
|
|
||||||
## 2.1.3
|
## 2.1.3
|
||||||
|
|
||||||
- Merged slash commands and skills, simplifying the mental model with no change in behavior
|
- Merged slash commands and skills, simplifying the mental model with no change in behavior
|
||||||
|
|||||||
41
README.md
41
README.md
@@ -11,30 +11,37 @@ Claude Code is an agentic coding tool that lives in your terminal, understands y
|
|||||||
<img src="./demo.gif" />
|
<img src="./demo.gif" />
|
||||||
|
|
||||||
## Get started
|
## Get started
|
||||||
|
> [!NOTE]
|
||||||
|
> Installation via npm is deprecated. Use one of the recommended methods below.
|
||||||
|
|
||||||
|
For more installation options, uninstall steps, and troubleshooting, see the [setup documentation](https://code.claude.com/docs/en/setup).
|
||||||
|
|
||||||
1. Install Claude Code:
|
1. Install Claude Code:
|
||||||
|
|
||||||
**MacOS/Linux:**
|
**MacOS/Linux (Recommended):**
|
||||||
```bash
|
```bash
|
||||||
curl -fsSL https://claude.ai/install.sh | bash
|
curl -fsSL https://claude.ai/install.sh | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
**Homebrew (MacOS):**
|
**Homebrew (MacOS/Linux):**
|
||||||
```bash
|
```bash
|
||||||
brew install --cask claude-code
|
brew install --cask claude-code
|
||||||
```
|
```
|
||||||
|
|
||||||
**Windows:**
|
**Windows (Recommended):**
|
||||||
```powershell
|
```powershell
|
||||||
irm https://claude.ai/install.ps1 | iex
|
irm https://claude.ai/install.ps1 | iex
|
||||||
```
|
```
|
||||||
|
|
||||||
**NPM:**
|
**WinGet (Windows):**
|
||||||
```bash
|
```powershell
|
||||||
npm install -g @anthropic-ai/claude-code
|
winget install Anthropic.ClaudeCode
|
||||||
```
|
```
|
||||||
|
|
||||||
NOTE: If installing with NPM, you also need to install [Node.js 18+](https://nodejs.org/en/download/)
|
**NPM (Deprecated):**
|
||||||
|
```bash
|
||||||
|
npm install -g @anthropic-ai/claude-code
|
||||||
|
```
|
||||||
|
|
||||||
2. Navigate to your project directory and run `claude`.
|
2. Navigate to your project directory and run `claude`.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user