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

12 lines
231 B
Bash

2023-02-18 02:46:44 +07:00
#!/bin/bash
2023-02-17 00:08:27 +07:00
git pull
python -m venv venv
source ./venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r ./requirements.txt
2023-02-17 20:18:57 +07:00
python -m pip install -r ./dlas/requirements.txt
deactivate
cd dlas
git pull
cd ..