SWHL 0529e2303e
docs: Add a new document site (#13375)
* docs: Add a new document site

* docs: Update comment setting

* chore(pre-commit): Remove rules of md and remove the size limits of 512kb

* chore(format): Run pre-commit in local

* ci(document): Change the default name of building document site.

* chore: Update .pre-commit-config.yaml
2024-07-24 20:00:15 +08:00

27 lines
535 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
comments: true
---
# 项目克隆
## 1. 克隆PaddleOCR repo代码
```bash linenums="1"
git clone https://github.com/PaddlePaddle/PaddleOCR
```
如果因为网络问题无法pull成功也可选择使用码云上的托管
```bash linenums="1"
git clone https://gitee.com/paddlepaddle/PaddleOCR
```
码云托管代码可能无法实时同步本github项目更新存在3~5天延时请优先使用推荐方式。
## 2. 安装第三方库
```bash linenums="1"
cd PaddleOCR
pip3 install -r requirements.txt
```