Update requirements.txt
Browse files- requirements.txt +17 -4
requirements.txt
CHANGED
|
@@ -1,6 +1,19 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
git+https://github.com/m-bain/whisperx.git
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 5 |
requests
|
| 6 |
-
|
|
|
|
| 1 |
+
# 1. Core numerics - Pin numpy < 2.0 to prevent binary incompatibility
|
| 2 |
+
numpy<2.0
|
| 3 |
+
pandas
|
| 4 |
+
|
| 5 |
+
# 2. PyTorch - Pin to a stable version (2.5.1 is safe/modern)
|
| 6 |
+
torch==2.5.1
|
| 7 |
+
torchaudio==2.5.1
|
| 8 |
+
|
| 9 |
+
# 3. Audio & Diarization - CRITICAL FIX
|
| 10 |
+
# WhisperX breaks with pyannote.audio > 3.1.1
|
| 11 |
+
pyannote.audio==3.1.1
|
| 12 |
+
|
| 13 |
+
# 4. The Main Library
|
| 14 |
git+https://github.com/m-bain/whisperx.git
|
| 15 |
+
|
| 16 |
+
# 5. UI & Utils
|
| 17 |
+
streamlit
|
| 18 |
requests
|
| 19 |
+
ffmpeg-python
|