© 2026 Hedgehog Software, LLC
pip install .
No CUDA runtime is found, using CUDA_HOME='/usr/local/cuda
FROM runpod/pytorch:2.1.0-py3.10-cuda11.8.0-devel-ubuntu22.04 WORKDIR / # Python dependencies COPY builder/requirements.txt /requirements.txt RUN python -m pip install --upgrade pip && \ python -m pip install --upgrade -r /requirements.txt --no-cache-dir && \ rm /requirements.txt # Install gsplat deps RUN apt update && apt install libglm-dev g++-9 gcc-9 -y RUN python -m pip install ninja numpy jaxtyping rich # Install gsplat RUN git clone https://github.com/nerfstudio-project/gsplat.git && \ cd gsplat && \ python -m pip install . && \ cd examples && \ python -m pip install -r requirements.txt