Spaces:
Runtime error
Runtime error
Commit
·
6a9b422
1
Parent(s):
ba74ae4
Create install.sh
Browse files- install.sh +20 -0
install.sh
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
cd SceneDreamer
|
| 2 |
+
CURRENT=$(pwd)
|
| 3 |
+
for p in correlation channelnorm resample2d bias_act upfirdn2d; do
|
| 4 |
+
cd imaginaire/third_party/${p};
|
| 5 |
+
rm -rf build dist *info;
|
| 6 |
+
python setup.py install;
|
| 7 |
+
cd ${CURRENT};
|
| 8 |
+
done
|
| 9 |
+
|
| 10 |
+
for p in gancraft/voxlib; do
|
| 11 |
+
cd imaginaire/model_utils/${p};
|
| 12 |
+
make all
|
| 13 |
+
cd ${CURRENT};
|
| 14 |
+
done
|
| 15 |
+
|
| 16 |
+
cd gridencoder
|
| 17 |
+
python setup.py build_ext --inplace
|
| 18 |
+
python -m pip install .
|
| 19 |
+
cd ${CURRENT}
|
| 20 |
+
cd ..
|