Spaces:
Paused
Paused
File size: 546 Bytes
b8eca8b 0d6b1e2 b8eca8b 0d6b1e2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash
# Update package lists and install libglm-dev
apt-get update && apt-get install -y libglm-dev
# Clone the repositories if they do not already exist
if [ ! -d "./splatter-image" ]; then
git clone https://github.com/szymanowiczs/splatter-image.git
cd splatter-image && pip install -r requirements.txt && cd ..
fi
if [ ! -d "./diff-gaussian-rasterization" ]; then
git clone https://github.com/graphdeco-inria/diff-gaussian-rasterization
cd diff-gaussian-rasterization && python setup.py build_ext --inplace && cd ..
fi |