Closed knowpwr closed 5 months ago
you may try paddlepaddle 2.5
Thanks for the reply. Tried with paddlepaddle 2.5 and I got this error:
Error: Can not import paddle core while this file exists: /usr/local/lib/python3.10/dist-packages/paddle/fluid/libpaddle.so
at the following line:
from paddleocr import PaddleOCR,draw_ocr
Also, got another error:
ImportError: libssl.so.1.1: cannot open shared object file: No such file or directory
at:
from . import libpaddle
@knowpwr This link may solve your problem: https://stackoverflow.com/questions/72133316/libssl-so-1-1-cannot-open-shared-object-file-no-such-file-or-directory.
@GreatV That fixed it. Thank you for the help.
问题描述 / Problem Description
运行环境 / Runtime Environment
复现代码 / Reproduction Code
I have an issue when using PaddleOCR with Google Colab while choosing CPU runtime. The issue is only restricted to CPU runtime. If I go for GPU option everything works fine. I used the following code to install PaddleOCR into the Google Colab:
Then, I execture:
The notebook crashes on the second line (on initializing PaddleOCR). I see the following line displayed on output:
完整报错 / Complete Error Message
Here is the crash log:
Thank you.