Distributing Python program using pytesseract library
78 views
Skip to first unread message
Tntpker
unread,
May 1, 2017, 6:39:14 AM5/1/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tesseract-ocr
Hello, would anyone here know how I´d be able to distribute a python program using pytesseract module? Would I need to have some install wizard to let the user install the tesseract engine manually? Thanks in advance.
jollyf...@gmail.com
unread,
May 25, 2017, 12:58:43 AM5/25/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tesseract-ocr
you can import your python programm in other python scripts via the 'import' keyword, run it in ipython via '%run YOURPROGRAMM' or run it on terminal with 'python YOURPROGRAMM'. to satisfy dependencies like the tesseract engine there are many options, heavily depending on what operating system you are using and on what operating system you want to deploy your program.on linux it might be a good approach to create a repository package for your distribution that has the tesseract engine ( including the exact version ) as a dependency so it gets pulled during the package installation.
Tntpker
unread,
May 31, 2017, 5:26:03 PM5/31/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message