mirror of
https://github.com/PaddlePaddle/PaddleOCR.git
synced 2025-06-03 21:53:39 +08:00
* Update expired link in quickstart.md * remove broken links --------- Co-authored-by: Wang Xin <xinwang614@gmail.com>
22 lines
530 B
Markdown
22 lines
530 B
Markdown
# Project Clone
|
|
|
|
## 1. Clone PaddleOCR
|
|
|
|
```bash
|
|
# Recommend
|
|
git clone https://github.com/PaddlePaddle/PaddleOCR
|
|
|
|
# If you cannot pull successfully due to network problems, you can switch to the mirror hosted on Gitee:
|
|
|
|
git clone https://gitee.com/paddlepaddle/PaddleOCR
|
|
|
|
# Note: The mirror on Gitee may not keep in synchronization with the latest project on GitHub. There might be a delay of 3-5 days. Please try GitHub at first.
|
|
```
|
|
|
|
## 2. Install third-party libraries
|
|
|
|
```bash
|
|
cd PaddleOCR
|
|
pip3 install -r requirements.txt
|
|
```
|