| ```CODE: | |
| # See https://www.paddleocr.ai/latest/version3.x/pipeline_usage/PaddleOCR-VL.html to installation | |
| from paddleocr import PaddleOCRVL | |
| pipeline = PaddleOCRVL() | |
| output = pipeline.predict("path/to/document_image.png") | |
| for res in output: | |
| res.print() | |
| res.save_to_json(save_path="output") | |
| res.save_to_markdown(save_path="output") | |
| ``` | |
| ERROR: | |
| Traceback (most recent call last): | |
| File "/tmp/PaddlePaddle_PaddleOCR-VL_0bAubVP.py", line 24, in <module> | |
| from paddleocr import PaddleOCRVL | |
| ModuleNotFoundError: No module named 'paddleocr' | |