-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: import get_display #1283
Fix: import get_display #1283
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:
|
@@ -6,7 +6,7 @@ | |||
make_rotated_img_list, set_result_with_confidence,\ | |||
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems like a good idea to ensure backward compability!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the fix
@@ -6,7 +6,7 @@ | |||
make_rotated_img_list, set_result_with_confidence,\ | |||
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems like a good idea to ensure backward compability!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can someone approve this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.