docs: improve install methods

This commit is contained in:
Re-bin 2026-02-03 07:24:59 +00:00
parent 73a3934cc5
commit a4269593fc

View File

@ -60,19 +60,7 @@
## 📦 Install ## 📦 Install
**Install with [uv](https://github.com/astral-sh/uv)** (recommended for speed) **Install from source** (latest features, recommended for development)
```bash
uv tool install nanobot-ai
```
**Install from PyPi**
```bash
pip install nanobot-ai
```
**Install from source** (recommended for development)
```bash ```bash
git clone https://github.com/HKUDS/nanobot.git git clone https://github.com/HKUDS/nanobot.git
@ -80,12 +68,16 @@ cd nanobot
pip install -e . pip install -e .
``` ```
**Install with uv** **Install with [uv](https://github.com/astral-sh/uv)** (stable, fast)
```bash ```bash
uv venv uv tool install nanobot-ai
source .venv/bin/activate ```
uv pip install nanobot-ai
**Install from PyPI** (stable)
```bash
pip install nanobot-ai
``` ```
## 🚀 Quick Start ## 🚀 Quick Start