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 b80cecdcc4
commit a5d8a1a459
1 changed files with 2 additions and 2 deletions

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 numpy requests sentencepiece torch tqdm
WORKDIR /app WORKDIR /app