From ce567885cc903e26e7fa5ae25353364f5e1bfa49 Mon Sep 17 00:00:00 2001 From: John <3859906+saltchicken@users.noreply.github.com> Date: Wed, 26 Feb 2025 12:16:27 -0800 Subject: [PATCH] Update README.md Update installation instructions for local install --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 64c2b80..1dc5c23 100644 --- a/README.md +++ b/README.md @@ -55,18 +55,17 @@ Then run the following commands, using anaconda prompt as the terminal (or any o This will: 1. create conda environment with minimal dependencies specified 1. activate the environment -1. install pytorch with the command provided here: https://pytorch.org/get-started/locally/ 1. clone tortoise-tts 1. change the current directory to tortoise-tts +1. install required dependencies via requirements.txt 1. run tortoise python setup install script ```shell -conda create --name tortoise python=3.9 numba inflect +conda create --name tortoise python=3.11 conda activate tortoise -conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia -conda install transformers=4.29.2 git clone https://github.com/neonbjb/tortoise-tts.git cd tortoise-tts +pip install -r requirements.txt python setup.py install ```