From 44ec20d5b95bf7d1aa07e2256dcd1a6713c47c04 Mon Sep 17 00:00:00 2001 From: Jarod Mica Date: Sun, 21 Jan 2024 18:21:53 -0800 Subject: [PATCH] Add setup-whisperx.bat for whisperx setup --- requirements.txt | 4 +++- setup-whisperx.bat | 12 ++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 setup-whisperx.bat diff --git a/requirements.txt b/requirements.txt index 51c2fc9..e6de00c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,4 +15,6 @@ pydantic==1.10.11 websockets beartype==0.15.0 pykakasi -rotary-embedding-torch==0.4.0 \ No newline at end of file +rotary-embedding-torch==0.4.0 +transformers==4.19 +omegaconf<=2.1 \ No newline at end of file diff --git a/setup-whisperx.bat b/setup-whisperx.bat new file mode 100644 index 0000000..1c9fa1c --- /dev/null +++ b/setup-whisperx.bat @@ -0,0 +1,12 @@ +@echo off +call .\venv\Scripts\activate.bat + +:: Install whisperx +python -m pip install git+https://github.com/m-bain/whisperx.git + + +:: Fix incompatibilites caused from packages in whisperx +python -m pip install -r requirements.txt + +echo Installation finished +pause \ No newline at end of file