docs: platform-specific install commands for Linux/macOS/Windows

All 8 READMEs (EN/RU/ZH/ES × root + claude/) now show separate
commands for Linux (sudo bash), macOS (bash), Windows (PowerShell/CMD).
Added .gitignore for __pycache__.
This commit is contained in:
delta-cloud-208e
2026-02-21 12:07:44 +00:00
parent 82ec4252d2
commit c3f7c9ccf8
9 changed files with 273 additions and 148 deletions

View File

@@ -4,47 +4,56 @@
适用于自定义 API 端点的修补版 Claude Code CLI。已应用 15 个补丁。
## 一键安装
## 安装
所有依赖自动安装Git、Python 3、Node.js v24.13+、Claude Code。
**Linux (Debian/Ubuntu/RHEL/Fedora):**
```bash
sudo bash <(curl -s https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh)
```
所有依赖自动安装Git、Python 3、Node.js v24.13+、Claude Code。
**macOS:**
```bash
bash <(curl -s https://git.sensey24.ru/aibot777/unlimitedcoding/raw/branch/master/claude/uclaude_install.sh)
```
**Windows以管理员身份运行 PowerShell:**
```powershell
git clone --depth 1 https://git.sensey24.ru/aibot777/unlimitedcoding.git
cd unlimitedcoding
powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
```
## 手动安装
```bash
git clone --depth 1 https://git.sensey24.ru/aibot777/unlimitedcoding.git
cd unlimitedcoding
sudo bash claude/uclaude_update.sh --force
```
| 平台 | 命令 |
|------|------|
| Linux | `sudo bash claude/uclaude_update.sh --force` |
| macOS | `bash claude/uclaude_update.sh --force` |
| Windows CMD | `claude\uclaude_update.bat --force` |
| Windows PowerShell | `powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force` |
## 更新
```bash
cd ~/unlimitedcoding
sudo bash claude/uclaude_update.sh
```
| 平台 | 命令 |
|------|------|
| Linux | `cd ~/unlimitedcoding && sudo bash claude/uclaude_update.sh` |
| macOS | `cd ~/unlimitedcoding && bash claude/uclaude_update.sh` |
| Windows | `cd %USERPROFILE%\unlimitedcoding && claude\uclaude_update.bat` |
## 选项
```bash
sudo bash claude/uclaude_update.sh --check # 检查更新
sudo bash claude/uclaude_update.sh --force # 强制重装
sudo bash claude/uclaude_update.sh --settings-only # 仅修补设置,不替换 cli.js
```
## Windows
```cmd
claude\uclaude_update.bat
```
或使用 PowerShell自动提权通过 winget 自动安装):
```powershell
powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1
```
| 参数 | 描述 |
|------|------|
| `--check` | 仅检查更新 |
| `--force` | 强制重装 |
| `--settings-only` | 仅修补设置,不替换 cli.js |
## 补丁内容