Spaces:
Paused
Paused
Commit ·
0d6b1e2
1
Parent(s): 583955f
Add fix issue
Browse files
setup.sh
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
#!/bin/bash
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
# Clone the repositories if they do not already exist
|
| 4 |
if [ ! -d "./splatter-image" ]; then
|
| 5 |
git clone https://github.com/szymanowiczs/splatter-image.git
|
|
@@ -9,4 +12,4 @@ fi
|
|
| 9 |
if [ ! -d "./diff-gaussian-rasterization" ]; then
|
| 10 |
git clone https://github.com/graphdeco-inria/diff-gaussian-rasterization
|
| 11 |
cd diff-gaussian-rasterization && python setup.py build_ext --inplace && cd ..
|
| 12 |
-
fi
|
|
|
|
| 1 |
#!/bin/bash
|
| 2 |
|
| 3 |
+
# Update package lists and install libglm-dev
|
| 4 |
+
apt-get update && apt-get install -y libglm-dev
|
| 5 |
+
|
| 6 |
# Clone the repositories if they do not already exist
|
| 7 |
if [ ! -d "./splatter-image" ]; then
|
| 8 |
git clone https://github.com/szymanowiczs/splatter-image.git
|
|
|
|
| 12 |
if [ ! -d "./diff-gaussian-rasterization" ]; then
|
| 13 |
git clone https://github.com/graphdeco-inria/diff-gaussian-rasterization
|
| 14 |
cd diff-gaussian-rasterization && python setup.py build_ext --inplace && cd ..
|
| 15 |
+
fi
|