vllm/docs/README.md

20 lines
281 B
Markdown
Raw Normal View History

2023-06-17 18:07:40 +08:00
# vLLM documents
2023-05-23 08:02:44 +08:00
## Build the docs
```bash
# Install dependencies.
2023-06-29 21:52:15 +08:00
pip install -r requirements-docs.txt
2023-05-23 08:02:44 +08:00
# Build the docs.
make clean
make html
```
2023-06-29 21:52:15 +08:00
## Open the docs with your browser
2023-05-23 08:02:44 +08:00
```bash
2023-06-03 13:35:17 +08:00
python -m http.server -d build/html/
2023-05-23 08:02:44 +08:00
```
Launch your browser and open localhost:8000.