Merge pull request #1 from posweg/linux_support

Add GNU/Linux support
This commit is contained in:
Alie 2020-09-10 10:08:53 +02:00 committed by GitHub
commit 4f4eb910ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

18
setup.sh Executable file
View File

@ -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!"