From 5d69182bdf9244165496dc76febd72d7a6f23ada Mon Sep 17 00:00:00 2001 From: vixy Date: Sun, 11 Jan 2026 17:11:58 -0600 Subject: [PATCH] Fix: use regular PyPI for orpheus-speech on Jetson --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 64b7372..ce3dbb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,10 +21,10 @@ COPY requirements.txt /app/ # Install Python dependencies (FastAPI, etc - but NOT torch/vllm) RUN pip3 install --no-cache-dir -r requirements.txt -# Install orpheus-speech WITHOUT dependencies to avoid overwriting vllm/torch -# Then install just the audio codec it needs (snac) -RUN pip3 install --no-cache-dir --no-deps orpheus-speech && \ - pip3 install --no-cache-dir snac +# Install orpheus-speech from regular PyPI (not Jetson index) WITHOUT dependencies +# to avoid overwriting vllm/torch. Then install snac audio codec. +RUN pip3 install --no-cache-dir --no-deps --index-url https://pypi.org/simple/ orpheus-speech && \ + pip3 install --no-cache-dir --index-url https://pypi.org/simple/ snac # Copy application code COPY main.py /app/