Version | Supported |
---|---|
2.5.x | ✅ |
2.4.x | ✅ |
1.0.x | ✅ |
< 1.0 | ❌ |
Below version 1.0 a very common error was:
>>> import nkocr
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'nkocr'
This was due to an architecture problem, so to fix this problem it is necessary to upgrade the package to the most stable version.
If you encounter an error related to the missing dictionary.pkl
file when running OcrTable()
with spell_corrector=True
, you can download the dictionary.pkl
file and place it in the correct location.
- Download the
dictionary.pkl
file from the repository or the provided link. - Place the
dictionary.pkl
file in thesrc/dictionary
directory of your project.
This will ensure that the dictionary.pkl
file is available for the spell corrector functionality.