Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions website/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This guide will help you set up and install the Semantic Router on your system.

- **Go**: Version 1.19 or higher
- **Rust**: Version 1.70 or higher (for Candle bindings)
- **Python**: Version 3.8 or higher (for model downloads)
- **HuggingFace CLI**: For model downloads (`pip install huggingface_hub`)

## Local Installation
Expand Down Expand Up @@ -44,6 +45,16 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.cargo/env
```

#### Install Python (if not already installed)
```bash
# Check if Python is installed
python --version

# If not installed:
# macOS: brew install python
# Ubuntu: sudo apt install python3 python3-pip (Tips: need python3.8+)
```

#### Install HuggingFace CLI
```bash
pip install huggingface_hub
Expand Down
Loading