From 14e98b8e13d784108fd4c9573844847e9631ea77 Mon Sep 17 00:00:00 2001 From: Stephan Walter Date: Sun, 19 Mar 2023 12:18:05 +0000 Subject: [PATCH] Add tqdm to Python requirements Should fix #289 --- .devops/full.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devops/full.Dockerfile b/.devops/full.Dockerfile index 618cdddc4..7f383726c 100644 --- a/.devops/full.Dockerfile +++ b/.devops/full.Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && \ apt-get install -y build-essential python3 python3-pip RUN pip install --upgrade pip setuptools wheel \ - && pip install torch torchvision torchaudio sentencepiece numpy + && pip install torch torchvision torchaudio sentencepiece numpy tqdm WORKDIR /app @@ -14,4 +14,4 @@ COPY . . RUN make -ENTRYPOINT ["/app/.devops/tools.sh"] \ No newline at end of file +ENTRYPOINT ["/app/.devops/tools.sh"]