From aaca6d222c2164b162640f099b02570f1f0a9975 Mon Sep 17 00:00:00 2001 From: Vincent Roseberry Date: Fri, 16 Apr 2021 09:58:28 -0700 Subject: [PATCH] Unpin wand Latest version of `wand` is compatible with latest version of tesseract --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d00dd75c..1483b519 100644 --- a/Dockerfile +++ b/Dockerfile @@ -443,7 +443,7 @@ RUN mkdir -p /root/.EasyOCR/model && \ # Tesseract and some associated utility packages RUN apt-get install tesseract-ocr -y && \ pip install pytesseract && \ - pip install wand==0.5.3 && \ + pip install wand && \ pip install pdf2image && \ pip install PyPDF && \ pip install pyocr && \