1
0
Fork 0
ai-voice-cloning-fork/update-force.sh

19 lines
499 B
Bash

2023-02-18 02:46:44 +07:00
#!/bin/bash
2023-02-17 00:08:27 +07:00
git fetch --all
2023-02-18 02:46:44 +07:00
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 ./requirements.txt
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
2023-03-10 04:27:34 +07:00
python3 -m pip install -U einops==0.6.0
python3 -m pip install -U librosa==0.8.1
deactivate