我也安装了 paddle_ocr 和 paddlepaddle 包,但出现错误(ModuleNotFoundError: No module named 'paddle.fluid.core_noavx')。如何解决此类错误在此处提供您的建议...附在我的代码下方
from paddleocr import PaddleOCR,draw_ocr
# Paddleocr supports Chinese, English, French, German, Korean and Japanese.
# You can set the parameter `lang` as `ch`, `en`, `french`, `german`, `korean`, `japan`
# to switch the language model in order.
ocr = PaddleOCR(use_angle_cls=True, lang='en') # need to run only once to download and load model into memory
img_path = 'PaddleOCR/doc/imgs_en/img_12.jpg'
result = ocr.ocr(img_path, cls=True)
for line in result:
print(line)