tesserocr
tesserocr copied to clipboard
Publish Wheels
Ideally with static libraries included so that all that is required for installation in pip
.
I'd need to include tesseract and leptonica binaries in the wheels for this to work properly but I'm not sure what the best way to do this is to be honest. I'll need to look into it, any pointers are appreciated of course.
This project does something similar: https://github.com/skvark/opencv-python/
@cancan101 what version of Python are you using? See if the wheels I added here work for you.
@simonflueckiger Sorry it took me a while to looking the wheels. Unfortunately I am using Python 3.5 on linux (and those looks like windows wheels).
I see... not really sure how to package the libraries up in linux. As an alternative, you can use conda install -c mcs07 tesserocr
if you have the conda package manager installed (i recommend Miniconda). For Python 3.5 you can download the Miniconda Python 3.6 installer (or even 2.7, doesn't really matter) and create a Python 3.5 environment with conda create -n py35 python=3.5
, then switch to it with source activate py35
. Finally install tesserocr with the command mentioned before.
Tell me if using conda is not an option for you. I know that this is not a solution to this issue, but maybe it can still be of help to you or someone else stumbling upon this.
@simonflueckiger I don't think my conda recipe for tesserocr is working properly on Windows yet, it's still a work in progress...
@mcs07 yes, for windows he can use my recipe conda install -c simonflueckiger tesserocr
But as I understand it, @cancan101 is workin on linux at the moment, so he should be fine with your recipe, right?
Ah oops yes, I skimmed over the thread too quickly!
Has there been any progress on getting static wheels to work on Linux?