Conversation
|
Please install this version of python-bidi:
|
|
@Yepness I think the requirements also need to be changed to reflect that easyocr only supports newer versions of python-bidi if this change is implemented? |
|
@vinsunkavalli The current requirements reference the latest version of python-bidi, which includes the import adjustment. Therefore, there are two possible solutions:
|
| reformat_input_batched, merge_to_free | ||
| from .config import * | ||
| from bidi.algorithm import get_display | ||
| from bidi import get_display |
There was a problem hiding this comment.
| from bidi import get_display | |
| try: | |
| from bidi import get_display | |
| except: | |
| from bidi.algoritm import get_display |
There was a problem hiding this comment.
That seems like a good idea to ensure backward compability!
| reformat_input_batched, merge_to_free | ||
| from .config import * | ||
| from bidi.algorithm import get_display | ||
| from bidi import get_display |
There was a problem hiding this comment.
That seems like a good idea to ensure backward compability!
sagarishere
left a comment
There was a problem hiding this comment.
yup, do this.
This is a critical issue to make the base library to be useful out of the box.
|
Thanks everyone. |
Fix get display import "from bidi import get_display" and no longer from "bidi.algorithm import get_display" this PR aim to fix that issue.