-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall_diarization.bat
More file actions
32 lines (29 loc) · 1.08 KB
/
install_diarization.bat
File metadata and controls
32 lines (29 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo off
echo ================================================================================
echo Installing Speaker Diarization Dependencies
echo ================================================================================
echo.
echo Installing all required dependencies...
pip install -r requirements.txt
echo.
echo Creating .env file from template...
if not exist .env (
copy .env.example .env
echo .env file created! Please edit it with your HuggingFace token.
) else (
echo .env file already exists, skipping...
)
echo.
echo ================================================================================
echo Installation Complete!
echo ================================================================================
echo.
echo Next steps:
echo 1. Get a HuggingFace token at: https://huggingface.co/settings/tokens
echo 2. Accept model terms at: https://huggingface.co/pyannote/speaker-diarization-3.1
echo 3. Edit .env file and add your token: HF_TOKEN=your_token_here
echo 4. Run the app: python app.py
echo.
echo See QUICK_SETUP.md for detailed instructions
echo.
pause