Open
Description
In the end of executing [pip install -e .], dependency conflicts happened:
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
tts 0.22.0 requires librosa>=0.10.0, but you have librosa 0.9.1 which is incompatible.
transformers 4.51.1 requires huggingface-hub<1.0,>=0.30.0, but you have huggingface-hub 0.17.3 which is incompatible.
transformers 4.51.1 requires tokenizers<0.22,>=0.21, but you have tokenizers 0.14.1 which is incompatible.
After [pip install librosa==0.10.0 huggingface-hub==0.30.0 tokenizers==0.21.0], another dependency conflicts happen again.
Any good idea for this problems will be appreciated.