Add tqdm to Python requirements

Should fix #289
This commit is contained in:
Stephan Walter 2023-03-19 12:18:05 +00:00 committed by GitHub
parent d7def1a752
commit 14e98b8e13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ RUN apt-get update && \
apt-get install -y build-essential python3 python3-pip apt-get install -y build-essential python3 python3-pip
RUN pip install --upgrade pip setuptools wheel \ RUN pip install --upgrade pip setuptools wheel \
&& pip install torch torchvision torchaudio sentencepiece numpy && pip install torch torchvision torchaudio sentencepiece numpy tqdm
WORKDIR /app WORKDIR /app
@ -14,4 +14,4 @@ COPY . .
RUN make RUN make
ENTRYPOINT ["/app/.devops/tools.sh"] ENTRYPOINT ["/app/.devops/tools.sh"]