2023-02-18 02:46:44 +00:00
|
|
|
#!/bin/bash
|
2023-02-19 21:41:51 +00:00
|
|
|
git submodule init
|
2023-02-23 07:05:39 +00:00
|
|
|
git submodule update --remote
|
2023-02-19 21:41:51 +00:00
|
|
|
|
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
|
2023-02-17 00:08:27 +00:00
|
|
|
# ROCM
|
|
|
|
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/rocm5.1.1 # 5.2 does not work for me desu
|
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
|