ChengCui commited on
Commit
87fd188
·
verified ·
1 Parent(s): a877c8c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -2
README.md CHANGED
@@ -38,6 +38,7 @@ PaddleOCR-VL: Boosting Multilingual Document Parsing via a 0.9B Ultra-Compact Vi
38
  [![X](https://img.shields.io/badge/X-PaddlePaddle-6080F0)](https://x.com/PaddlePaddle)
39
  [![License](https://img.shields.io/badge/license-Apache_2.0-green)](./LICENSE)
40
 
 
41
  **🔥 Official Demo**: [Baidu AI Studio](https://aistudio.baidu.com/application/detail/98365) |
42
  **📝 arXiv**: [Technical Report](https://arxiv.org/pdf/2510.14528)
43
 
@@ -85,12 +86,16 @@ PaddleOCR-VL: Boosting Multilingual Document Parsing via a 0.9B Ultra-Compact Vi
85
  Install [PaddlePaddle](https://www.paddlepaddle.org.cn/install/quick) and [PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR):
86
 
87
  ```bash
88
- python -m pip install paddlepaddle-gpu==3.2.0 -i https://www.paddlepaddle.org.cn/packages/stable/cu126/
 
89
  python -m pip install -U "paddleocr[doc-parser]"
 
90
  python -m pip install https://paddle-whl.bj.bcebos.com/nightly/cu126/safetensors/safetensors-0.6.2.dev0-cp38-abi3-linux_x86_64.whl
 
 
91
  ```
92
 
93
- > For Windows users, please use WSL or a Docker container.
94
 
95
 
96
  ### Basic Usage
 
38
  [![X](https://img.shields.io/badge/X-PaddlePaddle-6080F0)](https://x.com/PaddlePaddle)
39
  [![License](https://img.shields.io/badge/license-Apache_2.0-green)](./LICENSE)
40
 
41
+ **🔥 Official Website**: [Baidu AI Studio](https://aistudio.baidu.com/paddleocr) |
42
  **🔥 Official Demo**: [Baidu AI Studio](https://aistudio.baidu.com/application/detail/98365) |
43
  **📝 arXiv**: [Technical Report](https://arxiv.org/pdf/2510.14528)
44
 
 
86
  Install [PaddlePaddle](https://www.paddlepaddle.org.cn/install/quick) and [PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR):
87
 
88
  ```bash
89
+ # The following command installs the PaddlePaddle version for CUDA 12.6. For other CUDA versions and the CPU version, please refer to https://www.paddlepaddle.org.cn/en/install/quick?docurl=/documentation/docs/en/develop/install/pip/linux-pip_en.html
90
+ python -m pip install paddlepaddle-gpu==3.2.1 -i https://www.paddlepaddle.org.cn/packages/stable/cu126/
91
  python -m pip install -U "paddleocr[doc-parser]"
92
+ # For Linux systems, run:
93
  python -m pip install https://paddle-whl.bj.bcebos.com/nightly/cu126/safetensors/safetensors-0.6.2.dev0-cp38-abi3-linux_x86_64.whl
94
+ # For Windows systems, run:
95
+ python -m pip install https://xly-devops.cdn.bcebos.com/safetensors-nightly/safetensors-0.6.2.dev0-cp38-abi3-win_amd64.whl
96
  ```
97
 
98
+ > **Please ensure that you install PaddlePaddle framework version 3.2.1 or above, along with the special version of safetensors.** For macOS users, please use Docker to set up the environment.
99
 
100
 
101
  ### Basic Usage