Installation

Vortex plugs into a vendored SGLang (under third_party/). Install SGLang in editable mode first, then Vortex. Installation is CPU-only — all kernels are prebuilt wheels or JIT-compiled at runtime — so it works even while the GPUs are busy.

From source

git clone --recursive https://github.com/Infini-AI-Lab/vortex_torch.git
cd vortex_torch

# 1. SGLang dependency (vendored, editable)
cd third_party/sglang/v0.5.9/sglang
pip install -e "python"
cd ../../../../

# 2. Vortex (editable)
pip install -e .

If you cloned without --recursive, pull the submodules first:

git submodule update --init --recursive

Verify

python -c "import torch, sglang, vortex_torch, flashinfer; print('vortex ok')"

You should see vortex ok with no import errors. You’re ready for the Quick Start.