forked from mrq/ai-voice-cloning
8 lines
279 B
Bash
8 lines
279 B
Bash
|
python -m venv venv
|
||
|
source ./venv/bin/activate
|
||
|
python -m pip install --upgrade pip
|
||
|
# 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
|
||
|
python -m pip install -r ./requirements.txt
|
||
|
deactivate
|