We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbaadf1 commit fd06d10Copy full SHA for fd06d10
1 file changed
README.md
@@ -378,6 +378,15 @@ cite the following:
378
}
379
```
380
381
+## Hacking on the Python module locally
382
+To install your own build of Tesseract python module locally so that you can easily modify and hack on it, use something like the following:
383
+```bash
384
+bazel build --define TARGET_VERSION="py3.12.9" --define VERSION="v0.0.0dev" :tesseract_decoder_wheel
385
+pip uninstall --y tesseract_decoder
386
+pip install bazel-bin/tesseract_decoder-0.0.0.dev0-py3.12.9-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
387
+python testscript.py
388
+```
389
+
390
## Contact
391
392
For any questions or concerns not addressed here, please email <tesseract-decoder-dev@google.com>.
0 commit comments