2025-02-13 18:44:17 +08:00
|
|
|
# vLLM Ascend Plugin documents
|
|
|
|
|
|
2026-01-15 09:06:01 +08:00
|
|
|
Live doc: <https://docs.vllm.ai/projects/ascend>
|
2025-02-19 08:57:27 +08:00
|
|
|
|
2025-02-13 18:44:17 +08:00
|
|
|
## Build the docs
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Install dependencies.
|
|
|
|
|
pip install -r requirements-docs.txt
|
|
|
|
|
|
|
|
|
|
# Build the docs.
|
|
|
|
|
make clean
|
|
|
|
|
make html
|
|
|
|
|
|
2025-07-21 11:26:27 +08:00
|
|
|
# Build the docs with translation
|
|
|
|
|
make intl
|
2025-02-13 18:44:17 +08:00
|
|
|
|
2025-07-21 11:26:27 +08:00
|
|
|
# Open the docs with your browser
|
2025-03-26 16:25:57 +08:00
|
|
|
python -m http.server -d _build/html/
|
2025-02-13 18:44:17 +08:00
|
|
|
```
|
|
|
|
|
|
2025-07-21 11:26:27 +08:00
|
|
|
Launch your browser and open:
|
2026-01-15 09:06:01 +08:00
|
|
|
|
|
|
|
|
- English version: <http://localhost:8000>
|
|
|
|
|
- Chinese version: <http://localhost:8000/zh_CN>
|