Update requirements.txt
Browse files- requirements.txt +7 -10
requirements.txt
CHANGED
|
@@ -1,16 +1,13 @@
|
|
| 1 |
-
# 1.
|
| 2 |
-
numpy<2.0
|
| 3 |
-
pandas
|
| 4 |
-
|
| 5 |
-
# 2. Audio & Diarization
|
| 6 |
-
# We pin pyannote to 3.1.1 because WhisperX is not compatible with 3.2+
|
| 7 |
pyannote.audio==3.1.1
|
| 8 |
|
| 9 |
-
#
|
| 10 |
-
|
|
|
|
|
|
|
| 11 |
git+https://github.com/m-bain/whisperx.git
|
| 12 |
|
| 13 |
-
# 4.
|
| 14 |
streamlit
|
| 15 |
requests
|
| 16 |
-
|
|
|
|
| 1 |
+
# 1. Prevent the "AttributeError: DiarizationPipeline" crash
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
pyannote.audio==3.1.1
|
| 3 |
|
| 4 |
+
# 2. Prevent the "NumPy 2.0" binary incompatibility crash
|
| 5 |
+
numpy<2.0
|
| 6 |
+
|
| 7 |
+
# 3. The main library (will automatically install the correct Torch)
|
| 8 |
git+https://github.com/m-bain/whisperx.git
|
| 9 |
|
| 10 |
+
# 4. Your original dependencies
|
| 11 |
streamlit
|
| 12 |
requests
|
| 13 |
+
pandas
|