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 @@
Patched Claude Code CLI for use with custom API endpoints. 15 patches applied.
## One-line Install
## Install
All dependencies are installed automatically: 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)
```
All dependencies are installed automatically: 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 as Administrator):**
```powershell
git clone --depth 1 https://git.sensey24.ru/aibot777/unlimitedcoding.git
cd unlimitedcoding
powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1 --force
```
## Manual Install
```bash
git clone --depth 1 https://git.sensey24.ru/aibot777/unlimitedcoding.git
cd unlimitedcoding
sudo bash claude/uclaude_update.sh --force
```
| Platform | Command |
|----------|---------|
| 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` |
## Update
```bash
cd ~/unlimitedcoding
sudo bash claude/uclaude_update.sh
```
| Platform | Command |
|----------|---------|
| 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` |
## Options
```bash
sudo bash claude/uclaude_update.sh --check # check for updates
sudo bash claude/uclaude_update.sh --force # force reinstall
sudo bash claude/uclaude_update.sh --settings-only # only patch settings
```
## Windows
```cmd
claude\uclaude_update.bat
```
Or PowerShell (auto-elevates to admin, auto-installs via winget):
```powershell
powershell -ExecutionPolicy Bypass -File claude\uclaude_update.ps1
```
| Flag | Description |
|------|-------------|
| `--check` | Check for updates only |
| `--force` | Force reinstall |
| `--settings-only` | Only patch settings, don't replace cli.js |
## What's Patched