12345678910111213141516171819202122232425262728 |
- FROM ubuntu:20.04
- RUN apt update
- RUN apt install -y software-properties-common
- RUN apt-get install python3-pip -y
- RUN apt-get install vim -y
- RUN apt-get install libsndfile1 -y
- RUN pip3 install rpyc
- RUN pip3 install g2p-en==2.1.0
- RUN pip3 install inflect==4.1.0
- RUN pip3 install librosa==0.7.2
- RUN pip3 install matplotlib==3.2.2
- RUN pip3 install numba==0.48
- RUN pip3 install numpy==1.19.0
- RUN pip3 install pypinyin==0.39.0
- RUN pip3 install pyworld==0.2.10
- RUN pip3 install PyYAML==5.4.1
- RUN pip3 install scikit-learn==0.23.2
- RUN pip3 install scipy==1.5.0
- RUN pip3 install soundfile==0.10.3.post1
- RUN pip3 install tensorboard==2.2.2
- RUN pip3 install tgt==1.4.4
- RUN pip3 install torch==1.7.0
- RUN pip3 install tqdm==4.46.1
- RUN pip3 install unidecode==1.1.1
|