Parcourir la source

Add tqdm to Python requirements (#293)

* Add tqdm to Python requirements
* Remove torchvision torchaudio, add requests
Stephan Walter il y a 2 ans
Parent
commit
5cb63e2493
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      .devops/full.Dockerfile

+ 2 - 2
.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 numpy requests sentencepiece torch tqdm
 
 WORKDIR /app
 
@@ -14,4 +14,4 @@ COPY . .
 
 RUN make
 
-ENTRYPOINT ["/app/.devops/tools.sh"]
+ENTRYPOINT ["/app/.devops/tools.sh"]