forked from mrq/tortoise-tts
10 lines
490 B
Batchfile
Executable File
10 lines
490 B
Batchfile
Executable File
python -m venv tortoise-venv
|
|
call .\tortoise-venv\Scripts\activate.bat
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu118
|
|
python -m pip install --pre torchvision --index-url https://download.pytorch.org/whl/nightly/cu118
|
|
python -m pip install --pre torchaudio --index-url https://download.pytorch.org/whl/nightly/cu118
|
|
python -m pip install -r ./requirements.txt
|
|
python setup.py install
|
|
deactivate
|
|
pause |