Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +11 -1
requirements.txt
CHANGED
@@ -1,12 +1,22 @@
|
|
1 |
# Core Gradio and Spaces
|
2 |
gradio>=4.0.0
|
3 |
spaces>=0.10.0
|
4 |
-
git+https://github.com/sudoping01/bambara-tts.git@main
|
5 |
|
|
|
|
|
6 |
--find-links https://download.pytorch.org/whl/torch_stable.html
|
7 |
|
|
|
8 |
sentencepiece
|
9 |
protobuf
|
10 |
datasets>=3.4.1
|
11 |
huggingface_hub
|
12 |
hf_transfer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Core Gradio and Spaces
|
2 |
gradio>=4.0.0
|
3 |
spaces>=0.10.0
|
|
|
4 |
|
5 |
+
# Install Unsloth dependencies without deps (like Colab)
|
6 |
+
# This should be installed BEFORE your main package
|
7 |
--find-links https://download.pytorch.org/whl/torch_stable.html
|
8 |
|
9 |
+
# Essential dependencies first
|
10 |
sentencepiece
|
11 |
protobuf
|
12 |
datasets>=3.4.1
|
13 |
huggingface_hub
|
14 |
hf_transfer
|
15 |
+
|
16 |
+
# Core ML dependencies
|
17 |
+
torch
|
18 |
+
numpy
|
19 |
+
soundfile
|
20 |
+
|
21 |
+
# Your TTS package (this will try to install unsloth==2025.6.1 but it should work now)
|
22 |
+
git+https://github.com/sudoping01/bambara-tts.git@main
|