From 1039d6c15fcd86d7239c26f729f51fdb726a5d12 Mon Sep 17 00:00:00 2001 From: Dendy Date: Thu, 10 Sep 2020 09:59:31 +0200 Subject: [PATCH] Add GNU/Linux support --- setup.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..ff79197 --- /dev/null +++ b/setup.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +echo "JUST FOR LINUX OR XDG OSs" + +echo "install python: https://www.python.org/downloads/" +xdg-open "https://www.python.org/downloads/" + +echo "also install tesseract https://tesseract-ocr.github.io/tessdoc/Downloads.html" +xdg-open "https://tesseract-ocr.github.io/tessdoc/Downloads.html" + +read -p "Press any key to resume when installation finishes" + +mkdir ImagesToConvert +mkdir ImagesOutput +pip install Pillow +pip install pytesseract + +echo "Installation finished!"