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
1 change: 1 addition & 0 deletions src/srtctl/core/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,7 @@ def get_install_commands(self) -> str:
sglang = (
"apt-get update -qq && apt-get install -y -qq libclang-dev curl > /dev/null 2>&1 && "
"if ! command -v cargo &>/dev/null; then curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable -q && source $HOME/.cargo/env; fi && "
"if ! command -v maturin &>/dev/null; then pip install --break-system-packages maturin; fi && "
"cd /sgl-workspace/ && "
"git clone https://github.com/ai-dynamo/dynamo.git && "
"cd dynamo && "
Expand Down
Loading