Add GNU/Linux support

This commit is contained in:
Dendy 2020-09-10 09:59:31 +02:00
parent 9f5682c04e
commit 1039d6c15f
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!"