Skip to content

Commit 8342ff0

Browse files
committed
fix install for Maha TTS
1 parent e3294bc commit 8342ff0

4 files changed

+5
-0
lines changed

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ RUN pip3 install -r requirements_rvc.txt
4343
RUN pip3 install hydra-core==1.3.2
4444
RUN pip3 install -r requirements_styletts2.txt
4545
RUN pip3 install -r requirements_vall_e.txt
46+
RUN pip3 install -r requirements_maha_tts.txt
4647

4748
# Add React webui (testing)
4849
RUN cd react-ui && npm install && npm run build

requirements_maha_tts.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
torch==2.0.0 # BSD 3-Clause - ensures torch is not reinstalled
2+
maha-tts @ git+https://github.com/dubverse-ai/MahaTTS.git@e6680df225a99367e070c0090dd564bc74647e23 # Apache 2.0

requirements_vall_e.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
torch==2.0.0 # BSD 3-Clause - ensures torch is not reinstalled
12
valle-x @ git+https://github.com/rsxdalv/VALL-E-X@f423d779e2015c11526f037de48210576820ed3a#egg=valle-x # MIT License

update.py

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def main():
7373
do("pip install hydra-core==1.3.2")
7474
try_install("requirements_styletts2.txt", "StyleTTS")
7575
try_install("requirements_vall_e.txt", "Vall-E-X")
76+
try_install("requirements_maha_tts.txt", "Maha TTS")
7677

7778
if is_node_installed():
7879
setup_node_modules()

0 commit comments

Comments
 (0)