Harryoung / Test

0 stars 0 forks source link

How to install #24

Open Harryoung opened 10 months ago

Harryoung commented 10 months ago

How can I install PaddleOCR whl package?

llm-issue-bot[bot] commented 10 months ago

Issue Response

  1. Install from PyPI:

    • Run the command: pip install "paddleocr>=2.0.1" (It is recommended to use version 2.0.1 or higher)
  2. Build your own whl package and install:

    • Run the command: python3 setup.py bdist_wheel
    • Then, run the command: pip3 install dist/paddleocr-x.x.x-py3-none-any.whl (Replace x.x.x with the version of PaddleOCR)

Related Sources