neonbjb / tortoise-tts

A multi-voice TTS system trained with an emphasis on quality
Apache License 2.0
12.97k stars 1.79k forks source link

Wrong Windows installations guide in README #816

Open arturstopa opened 1 month ago

arturstopa commented 1 month ago

This part of readme is wrong.

Line

conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia

doesn't work anymore. According to PyTorch docs for installation of older versions the correct line is

conda install pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 pytorch-cuda=11.7 -c pytorch -c nvidia
Chovanec commented 2 weeks ago

Alsopython setup.py install stops with error: ModuleNotFoundError: No module named 'setuptools_rust'

anmolbyte commented 1 week ago

does anyone know how to fix the setuptools_rust error?

arturstopa commented 1 week ago

Remove the constraint on tokenizers package. image

Also, python setup.py install is deprecated and raises a Warning, use pip install . instead.