From 7ef360529adaf3abd106317709a31cd4c1eabf27 Mon Sep 17 00:00:00 2001 From: Benedikt Heinrichs <49311227+BenediktHeinrichs@users.noreply.github.com> Date: Tue, 24 Oct 2023 17:49:19 +0000 Subject: [PATCH] Small adaptation to package install --- installDependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installDependencies.sh b/installDependencies.sh index c095d51..495cb8d 100644 --- a/installDependencies.sh +++ b/installDependencies.sh @@ -1,6 +1,6 @@ apt-get update \ && apt-get install -y --no-install-recommends git python3-opencv default-jre tesseract-ocr build-essential default-libmysqlclient-dev pkg-config wget libmagic1 \ - && pip install --no-cache-dir -r requirements.txt \ + && pip install --no-cache-dir --ignore-installed -r requirements.txt \ && python -c "import nltk; nltk.download('punkt')" \ && wget -O ./tika-server.jar https://archive.apache.org/dist/tika/2.7.0/tika-server-standard-2.7.0.jar \ && mkdir -p ~/.cache/torch/hub/checkpoints \