Update requirements.txt
Browse files- requirements.txt +19 -17
requirements.txt
CHANGED
|
@@ -1,19 +1,21 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
numpy
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
gradio
|
| 16 |
-
|
| 17 |
-
|
| 18 |
git+https://github.com/huggingface/diffusers.git@447e8322f76efea55d4769cd67c372edbf0715b8
|
| 19 |
git+https://github.com/nerfstudio-project/gsplat.git@32f2a54d21c7ecb135320bb02b136b7407ae5712
|
|
|
|
|
|
|
|
|
| 1 |
+
# Install PyTorch first (required by other packages)
|
| 2 |
+
torch>=2.0.0
|
| 3 |
+
torchvision
|
| 4 |
+
torchaudio
|
| 5 |
+
|
| 6 |
+
# Install other basic dependencies
|
| 7 |
+
numpy
|
| 8 |
+
scipy
|
| 9 |
+
Pillow
|
| 10 |
+
transformers
|
| 11 |
+
accelerate
|
| 12 |
+
diffusers
|
| 13 |
+
|
| 14 |
+
# Then install packages that depend on PyTorch
|
| 15 |
+
gradio
|
| 16 |
+
|
| 17 |
+
# Finally install packages that need PyTorch to compile
|
| 18 |
git+https://github.com/huggingface/diffusers.git@447e8322f76efea55d4769cd67c372edbf0715b8
|
| 19 |
git+https://github.com/nerfstudio-project/gsplat.git@32f2a54d21c7ecb135320bb02b136b7407ae5712
|
| 20 |
+
|
| 21 |
+
# Add any other dependencies your app needs
|