14 lines
660 B
Bash
Executable File
14 lines
660 B
Bash
Executable File
#!/bin/bash
|
|
# get local dependencies
|
|
git submodule init
|
|
git submodule update --remote
|
|
# CUDA
|
|
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu118
|
|
# install requirements
|
|
python3 -m pip install -r ./modules/tortoise-tts/requirements.txt # install TorToiSe requirements
|
|
python3 -m pip install -e ./modules/tortoise-tts/ # install TorToiSe
|
|
python3 -m pip install -r ./modules/dlas/requirements.txt # instal DLAS requirements, last, because whisperx will break a dependency here
|
|
python3 -m pip install -e ./modules/dlas/ # install DLAS
|
|
python3 -m pip install -r ./requirements.txt # install local requirements
|
|
|
|
rm *.bat |