Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# install animate3d
|
2 |
+
git clone https://github.com/yanqinJiang/Animate3D.git
|
3 |
+
cd Animate3D
|
4 |
+
conda create -n animate3d python=3.10
|
5 |
+
conda activate animate3d
|
6 |
+
pip install torch==1.13.1+cu117 torchvision==0.14.1+cu117 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu117
|
7 |
+
pip install -r requirements.txt
|
8 |
+
|
9 |
+
# install threestudio-3dgs plugin
|
10 |
+
cd custom
|
11 |
+
git clone https://github.com/DSaurus/threestudio-3dgs.git
|
12 |
+
cd threestudio-3dgs
|
13 |
+
git clone --recursive https://github.com/ashawkey/diff-gaussian-rasterization
|
14 |
+
git clone https://github.com/DSaurus/simple-knn.git
|
15 |
+
pip install ./diff-gaussian-rasterization
|
16 |
+
pip install ./simple-knn
|