From: Stephan Walter Date: Mon, 20 Mar 2023 08:24:11 +0000 (+0000) Subject: Add tqdm to Python requirements (#293) X-Git-Tag: gguf-v0.4.0~1195 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=5cb63e2493c49bc2c3b9b355696e8dc26cdd0380;p=pkg%2Fggml%2Fsources%2Fllama.cpp Add tqdm to Python requirements (#293) * Add tqdm to Python requirements * Remove torchvision torchaudio, add requests --- diff --git a/.devops/full.Dockerfile b/.devops/full.Dockerfile index 618cdddc..2b3a20c6 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 numpy requests sentencepiece torch 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"]