Spaces:
Running
on
Zero
Running
on
Zero
Update requirements.txt
Browse files- requirements.txt +9 -7
requirements.txt
CHANGED
|
@@ -1,22 +1,24 @@
|
|
| 1 |
-
# Core dependencies
|
| 2 |
numpy==1.26.0
|
| 3 |
-
Cython
|
| 4 |
|
| 5 |
# Audio/Video processing
|
| 6 |
ffmpeg-python
|
| 7 |
imageio-ffmpeg
|
| 8 |
moviepy==1.0.3
|
| 9 |
|
| 10 |
-
# PyTorch (
|
| 11 |
-
torch==2.
|
| 12 |
-
torchaudio==2.
|
| 13 |
|
| 14 |
# Translation and transcription
|
| 15 |
deep-translator
|
| 16 |
-
faster-whisper
|
| 17 |
librosa
|
| 18 |
numba
|
| 19 |
|
| 20 |
# UI
|
| 21 |
gradio==4.38.1
|
| 22 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies (ensure numpy first)
|
| 2 |
numpy==1.26.0
|
| 3 |
+
Cython==3.0.10
|
| 4 |
|
| 5 |
# Audio/Video processing
|
| 6 |
ffmpeg-python
|
| 7 |
imageio-ffmpeg
|
| 8 |
moviepy==1.0.3
|
| 9 |
|
| 10 |
+
# PyTorch (compatible versions)
|
| 11 |
+
torch==2.2.1
|
| 12 |
+
torchaudio==2.2.1
|
| 13 |
|
| 14 |
# Translation and transcription
|
| 15 |
deep-translator
|
| 16 |
+
faster-whisper==1.0.2
|
| 17 |
librosa
|
| 18 |
numba
|
| 19 |
|
| 20 |
# UI
|
| 21 |
gradio==4.38.1
|
| 22 |
+
|
| 23 |
+
# Chatterbox-TTS (after numpy)
|
| 24 |
+
chatterbox-tts==0.2.4
|