Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +28 -40
requirements.txt
CHANGED
|
@@ -1,45 +1,33 @@
|
|
| 1 |
-
# PyTorch (UniRig: >=2.3.1)
|
| 2 |
-
torch>=2.3.1
|
| 3 |
-
torchvision>=0.18.1 # Compatible with torch 2.3.1
|
| 4 |
|
| 5 |
-
# PyTorch Geometric libraries (for CUDA 12.1, matching PyTorch 2.3.1)
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
# --find-links is an alternative way to specify this if direct install fails.
|
| 9 |
-
torch-scatter -f https://data.pyg.org/whl/torch-2.3.1+cu121.html
|
| 10 |
-
torch-cluster -f https://data.pyg.org/whl/torch-2.3.1+cu121.html
|
| 11 |
|
| 12 |
-
# Spconv (for CUDA 12.1)
|
| 13 |
-
|
| 14 |
-
# This translates to the package name spconv-cu121 for pip.
|
| 15 |
-
spconv-cu121
|
| 16 |
|
| 17 |
-
# Numpy (UniRig: 1.26.4)
|
| 18 |
-
numpy==1.26.4
|
| 19 |
|
| 20 |
-
# Gradio
|
| 21 |
-
gradio>=
|
| 22 |
|
| 23 |
-
# Dependencies from UniRig's official requirements.txt
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
mediapipe
|
| 40 |
-
|
| 41 |
-
# Add UniRig itself if installing from a local clone within the Space
|
| 42 |
-
# If you place the UniRig cloned repo in the root of your space,
|
| 43 |
-
# you can install it in editable mode or add its path.
|
| 44 |
-
# For simplicity with Hugging Face Spaces, we'll add its path in app.py
|
| 45 |
-
# and rely on its scripts being callable via `python -m`.
|
|
|
|
| 1 |
+
# PyTorch (UniRig: >=2.3.1)
|
| 2 |
+
torch>=2.3.1
|
| 3 |
+
torchvision>=0.18.1 # Compatible with torch 2.3.1
|
| 4 |
|
| 5 |
+
# PyTorch Geometric libraries (for CUDA 12.1, matching PyTorch 2.3.1)
|
| 6 |
+
torch-scatter -f https://data.pyg.org/whl/torch-2.3.1+cu121.html
|
| 7 |
+
torch-cluster -f https://data.pyg.org/whl/torch-2.3.1+cu121.html
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
+
# Spconv (for CUDA 12.1)
|
| 10 |
+
spconv-cu121
|
|
|
|
|
|
|
| 11 |
|
| 12 |
+
# Numpy (UniRig: 1.26.4)
|
| 13 |
+
numpy==1.26.4
|
| 14 |
|
| 15 |
+
# Gradio (Updated to 5.29.0)
|
| 16 |
+
gradio>=5.29.0,<5.30.0
|
| 17 |
|
| 18 |
+
# Dependencies from UniRig's official requirements.txt
|
| 19 |
+
trimesh
|
| 20 |
+
scipy
|
| 21 |
+
smplx
|
| 22 |
+
pyrender
|
| 23 |
+
chumpy
|
| 24 |
+
opencv-python
|
| 25 |
+
Pillow
|
| 26 |
+
pyquaternion
|
| 27 |
+
pytorch-lightning
|
| 28 |
+
hydra-core
|
| 29 |
+
rich
|
| 30 |
+
distinctipy
|
| 31 |
+
scikit-image
|
| 32 |
+
mediapipe
|
| 33 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|