-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Adam Klement edited this page Jul 23, 2026
·
1 revision
| Requirement | Required | Notes |
|---|---|---|
| Python 3.10+ | yes | python --version |
| ffmpeg | yes | Video → audio extraction |
| NVIDIA GPU + CUDA | no | Faster transcription |
| Ollama | no | Translation & summarization |
| HuggingFace account | no | Only for --diarize — see HuggingFace Diarization
|
git clone https://github.com/Klema4/transcribe-cli.git
cd transcribe-cli
pip install -e .
lwt --helpWindows:
winget install ffmpegmacOS:
brew install ffmpegLinux:
sudo apt install ffmpegPython installs lwt.exe outside PATH on many setups.
Quick fix:
python -m local_whisper_transcribe.cli setup
python -m local_whisper_transcribe.cli transcribe meeting.mp4Permanent fix: Add Python Scripts to PATH:
python -c "import sysconfig; print(sysconfig.get_path('scripts'))"
$env:Path += ";C:\Users\YOU\AppData\Local\Python\pythoncore-3.14-64\Scripts"Restart terminal after adding to system Environment Variables.