Installation
This guide covers the installation of vLLM Judge and its prerequisites.
Prerequisites
Installing vLLM Judge
Basic Installation
Install the core library with pip:
pip install vllm-judge
This installs the essential dependencies:
-
httpx
- Async HTTP client -
pydantic
- Data validation -
tenacity
- Retry logic -
click
- CLI interface
Optional Features
API Server
To run vLLM Judge as an API server:
pip install vllm-judge[api]
This adds:
-
fastapi
- Web framework -
uvicorn
- ASGI server -
websockets
- WebSocket support
Troubleshooting
Common Issues
ImportError: No module named 'vllm_judge'
Make sure you’ve activated your virtual environment and installed the package:
pip install vllm-judge
Getting Help
If you encounter issues, report at GitHub Issues
🎉 Next Steps
Congratulations! You’ve successfully installed vLLM Judge. Here’s what to explore next:
-
Quick Start Guide - Get up and running with vLLM Judge in 5 minutes
-
vLLM Judge Overview - Return to the main tutorial page