tortoise-base / update-force.sh
ecker's picture
removed the hotfix pip installs that whisperx requires now that whisperx is gone
e680d84
raw
history blame
418 Bytes
#!/bin/bash
git fetch --all
git reset --hard origin/master
./update.sh
# force install requirements
python3 -m venv venv
source ./venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -r ./modules/tortoise-tts/requirements.txt
python3 -m pip install -e ./modules/tortoise-tts
python3 -m pip install -r ./modules/dlas/requirements.txt
python3 -m pip install -r ./requirements.txt
deactivate