Common Issues¶
Frequently encountered problems and solutions.
CUDA Issues¶
Issue: Version Mismatch¶
# Solution
pip uninstall torch torchvision
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu124
COLMAP Issues¶
Issue: SIGSEGV Segfault¶
Issue: sparse/0 Not Found¶
3DGS Issues¶
Issue: Out of Memory¶
# Solution 1: Reduce FPS
ffmpeg -i video.mp4 -vf "fps=3" ...
# Solution 2: Downscale
ffmpeg -i video.mp4 -vf "fps=5,scale=1920:1080" ...
Issue: Module Not Found¶
# Solution: Use --no-build-isolation
pip install submodules/diff-gaussian-rasterization --no-build-isolation
See specialized pages for more details.