mirror of
https://github.com/zenlm/claude-collector.git
synced 2026-07-26 22:30:45 +00:00
docs: add install instructions for PyPI
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
# Quick Install - Claude Collector
|
||||
|
||||
## Option 1: Direct from GitHub (Works Now!)
|
||||
|
||||
```bash
|
||||
uvx --from git+https://github.com/hanzoai/claude-collector claude-collector
|
||||
```
|
||||
|
||||
Or shorter with uv:
|
||||
```bash
|
||||
uv tool install git+https://github.com/hanzoai/claude-collector
|
||||
claude-collector
|
||||
```
|
||||
|
||||
## Option 2: Standalone Script (Even Easier!)
|
||||
|
||||
Copy-paste this one command:
|
||||
|
||||
```bash
|
||||
curl -sSL https://raw.githubusercontent.com/hanzoai/claude-collector/main/standalone.py | python3 - --output claude-data.jsonl
|
||||
```
|
||||
|
||||
Or download and run:
|
||||
|
||||
```bash
|
||||
curl -O https://raw.githubusercontent.com/hanzoai/claude-collector/main/standalone.py
|
||||
python3 standalone.py --output my-data.jsonl
|
||||
```
|
||||
|
||||
## Option 3: After PyPI Publish (Soon)
|
||||
|
||||
Once published to PyPI:
|
||||
|
||||
```bash
|
||||
uvx claude-collector
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
**Right now on van machine, use Option 1:**
|
||||
|
||||
```bash
|
||||
uvx --from git+https://github.com/hanzoai/claude-collector claude-collector --output van-data.jsonl
|
||||
```
|
||||
|
||||
Or Option 2 (curl the standalone script) - coming next!
|
||||
Reference in New Issue
Block a user