X-LANCE / VoiceFlow-TTS

[ICASSP 2024] This is the official code for "VoiceFlow: Efficient Text-to-Speech with Rectified Flow Matching"
https://cantabile-kwok.github.io/VoiceFlow/
276 stars 20 forks source link

gcc version when running setup.py #2

Closed forwiat closed 10 months ago

forwiat commented 10 months ago

"cd model/monotonic_align python setup.py build_ext --inplace" wonder which gcc version when compile this code

cantabile-kwok commented 10 months ago

I am using version 8.4.0, but I guess earlier ones will also work. This monotonic_align part is borrowed from GlowTTS, by the way. Did you encounter any compilation problem?

forwiat commented 10 months ago

yeah, but now I solved it. I attempt update gcc to 8.4.0, but error still occurs. Maybe because of high python version. (Python 3.9.0 when compile in anaconda, error info: /bin/ld: this linker was not configured to use sysroots). Ant then it compiled successfully when I exit conda environment, Python==3.7.2 in the same time. Thanks for reply.