Spaces:
Runtime error
Runtime error
File size: 636 Bytes
27e0117 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# install animate3d
git clone https://github.com/yanqinJiang/Animate3D.git
cd Animate3D
conda create -n animate3d python=3.10
conda activate animate3d
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
pip install -r requirements.txt
# install threestudio-3dgs plugin
cd custom
git clone https://github.com/DSaurus/threestudio-3dgs.git
cd threestudio-3dgs
git clone --recursive https://github.com/ashawkey/diff-gaussian-rasterization
git clone https://github.com/DSaurus/simple-knn.git
pip install ./diff-gaussian-rasterization
pip install ./simple-knn |