Add tqdm to Python requirements (#293)

* Add tqdm to Python requirements
* Remove torchvision torchaudio, add requests
This commit is contained in:
Stephan Walter 2023-03-20 08:24:11 +00:00 committed by GitHub
parent da5303c1ea
commit 5cb63e2493
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
RUN pip install --upgrade pip setuptools wheel \
&& pip install torch torchvision torchaudio sentencepiece numpy
&& pip install numpy requests sentencepiece torch tqdm
WORKDIR /app
@ -14,4 +14,4 @@ COPY . .
RUN make
ENTRYPOINT ["/app/.devops/tools.sh"]
ENTRYPOINT ["/app/.devops/tools.sh"]