I am very new to Python.
I have an OCR program that uses Tesseract, ImageMagick and Ghostscript. I created a .exe file to give it to my team so that they can use it on their tool.
The problem that I am facing is that all of them will have to separately install ImageMAgick and Ghostscript. Also Tesseract.
I am using Python 3.7 on Windows 10.
Can you guys please tell me how can I make a .exe that will install all of these in the user's system and be able to run to execute my python program.
I am also OK to have the ImageMagick, Ghostscript and Tesseract folders be placed somewhere and then are declared as environ variables. Please guide.