2023-02-18 02:46:44 +00:00
|
|
|
#!/bin/bash
|
2023-02-19 21:41:51 +00:00
|
|
|
git submodule init
|
|
|
|
git submodule update
|
|
|
|
|
2023-02-21 20:20:52 +00:00
|
|
|
python3 -m venv venv
|
2023-02-17 00:08:27 +00:00
|
|
|
source ./venv/bin/activate
|
2023-02-21 20:20:52 +00:00
|
|
|
python3 -m pip install --upgrade pip
|
|
|
|
# CUDA
|
2023-02-17 00:08:27 +00:00
|
|
|
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116
|
2023-02-21 20:20:52 +00:00
|
|
|
python3 -m pip install -r ./dlas/requirements.txt
|
|
|
|
python3 -m pip install -r ./tortoise-tts/requirements.txt
|
|
|
|
python3 -m pip install -r ./requirements.txt
|
|
|
|
python3 -m pip install -e ./tortoise-tts/
|
2023-02-17 00:08:27 +00:00
|
|
|
deactivate
|