NickVerri commited on
Commit
e320041
·
verified ·
1 Parent(s): d02b3f1

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +7 -10
requirements.txt CHANGED
@@ -1,16 +1,13 @@
1
- # 1. Core numerics - Pin numpy < 2.0 is CRITICAL
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
- # 3. The Main Library
10
- # This will automatically install the correct torch/torchaudio versions
 
 
11
  git+https://github.com/m-bain/whisperx.git
12
 
13
- # 4. UI & Utils
14
  streamlit
15
  requests
16
- ffmpeg-python
 
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