Dockerfile 757 B

12345678910111213141516171819202122232425262728
  1. FROM ubuntu:20.04
  2. RUN apt update
  3. RUN apt install -y software-properties-common
  4. RUN apt-get install python3-pip -y
  5. RUN apt-get install vim -y
  6. RUN apt-get install libsndfile1 -y
  7. RUN pip3 install rpyc
  8. RUN pip3 install g2p-en==2.1.0
  9. RUN pip3 install inflect==4.1.0
  10. RUN pip3 install librosa==0.7.2
  11. RUN pip3 install matplotlib==3.2.2
  12. RUN pip3 install numba==0.48
  13. RUN pip3 install numpy==1.19.0
  14. RUN pip3 install pypinyin==0.39.0
  15. RUN pip3 install pyworld==0.2.10
  16. RUN pip3 install PyYAML==5.4.1
  17. RUN pip3 install scikit-learn==0.23.2
  18. RUN pip3 install scipy==1.5.0
  19. RUN pip3 install soundfile==0.10.3.post1
  20. RUN pip3 install tensorboard==2.2.2
  21. RUN pip3 install tgt==1.4.4
  22. RUN pip3 install torch==1.7.0
  23. RUN pip3 install tqdm==4.46.1
  24. RUN pip3 install unidecode==1.1.1