Replies: 10 comments 5 replies
-
![]() |
Beta Was this translation helpful? Give feedback.
-
i got the same problem, too. |
Beta Was this translation helpful? Give feedback.
-
Same problem on M1 Pro |
Beta Was this translation helpful? Give feedback.
-
same problem on M2 |
Beta Was this translation helpful? Give feedback.
-
Tried to build a docker image with |
Beta Was this translation helpful? Give feedback.
-
Same issue with latest install on MBP M1 Max |
Beta Was this translation helpful? Give feedback.
-
Same problem. anyone solve it yet? |
Beta Was this translation helpful? Give feedback.
-
同样的问题!如果用intel芯片的苹果是可以的,但又换成另外一个问题了,在执行手工标注任务时,系统又会闪退。 |
Beta Was this translation helpful? Give feedback.
-
Please try to update the Paddle version to the latest, and use the latest code of PaddleOCR. import paddle
paddle.utils.run_check()
# Appear Successfully → ✔ |
Beta Was this translation helpful? Give feedback.
-
Still an issue, it is frozen after execution on Apple M1 Max | OS Sonoma 14.4|Python 3.11.7 64Bit
python -m pip install paddlepaddle==2.6.1 -i https://mirror.baidu.com/pypi/simple
conda update -n base -c defaults conda
conda create -n paddle_ocr_env python=3.11
conda activate paddle_ocr_env
conda install paddlepaddle==2.6.1 --channel https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/Paddle/ Codefrom paddleocr import PaddleOCR
import paddle
import os
os.environ["KMP_DUPLICATE_LIB_OK"] = "TRUE"
#########################################################################################
paddle.utils.run_check()
def main():
try:
ocr = PaddleOCR(use_angle_cls=True, lang='en', use_gpu=False, show_log=True)
result = ocr.ocr(img_path, cls=True)
print(result)
except Exception as e:
print(e)
if __name__ == '__main__':
main() OutputRunning verify PaddlePaddle program ... <---and it is frozen at this point (no error) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
请提供下述完整信息以便快速定位问题/Please provide the following information to quickly locate the problem
我们提供了AceIssueSolver来帮助你解答问题,你是否想要它来解答(请填写yes/no)?/We provide AceIssueSolver to solve issues, do you want it? (Please write yes/no): Yes
请尽量不要包含图片在问题中/Please try to not include the image in the issue.
I have to kill the process after more than 20 seconds of 100% process CPU utilization.
the code is simple
Beta Was this translation helpful? Give feedback.
All reactions