Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,10 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
from huggingface_hub import HfApi, create_repo
|
| 3 |
from git import Repo
|
| 4 |
import uuid
|
|
|
|
| 1 |
+
# 특별한 설치가 필요한 패키지들
|
| 2 |
+
special_packages = {
|
| 3 |
+
"pytorch3d": "# pytorch3d requires special installation from https://github.com/facebookresearch/pytorch3d/blob/main/INSTALL.md",
|
| 4 |
+
"torch-scatter": "# torch-scatter requires matching torch version",
|
| 5 |
+
"torch-sparse": "# torch-sparse requires matching torch version",
|
| 6 |
+
"torch-geometric": "# torch-geometric requires special installation"
|
| 7 |
+
}import gradio as gr
|
| 8 |
from huggingface_hub import HfApi, create_repo
|
| 9 |
from git import Repo
|
| 10 |
import uuid
|