From f9302ce4b4734069b0591ffbcd11c597bfa5d1c9 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 31 Jul 2020 15:57:58 +0200 Subject: [PATCH] Fix broken corpora creator install --- DeepSpeech/Dockerfile.train | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/DeepSpeech/Dockerfile.train b/DeepSpeech/Dockerfile.train index 0ac72607..d36fe444 100644 --- a/DeepSpeech/Dockerfile.train +++ b/DeepSpeech/Dockerfile.train @@ -4,7 +4,7 @@ ARG ds_repo=mozilla/DeepSpeech ARG ds_branch=f56b07dab4542eecfb72e059079db6c2603cc0ee ARG ds_sha1=f56b07dab4542eecfb72e059079db6c2603cc0ee ARG cc_repo=mozilla/CorporaCreator -ARG cc_sha1=64d63b69c3665645186565afd237b2266ed1abe9 +ARG cc_sha1=73622cf8399f8e634aee2f0e76dacc879226e3ac ARG kenlm_repo=kpu/kenlm ARG kenlm_branch=87e85e66c99ceff1fab2500a7c60c01da7315eec @@ -170,7 +170,8 @@ COPY --chown=trainer:trainer corpora.patch $CC_DIR RUN patch -p1 < corpora.patch -RUN pip install -r requirements.txt +# Avoid "error: pandas 1.1.0 is installed but pandas==1.0.5 is required by {'modin'}" +RUN pip install pandas==1.0.5 RUN python setup.py install