install_paddleclas.md 655 字节
Newer Older
G
gaotingquan 已提交
1 2 3
# 安装 PaddleClas

---
S
sibo2rr 已提交
4 5 6 7 8 9
## 目录

* [1. 克隆 PaddleClas](#1)
* [2. 安装 Python 依赖库](#2)

<a name='1'></a>
G
gaotingquan 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23

## 1. 克隆 PaddleClas

从 GitHub 下载:

```shell
git clone https://github.com/PaddlePaddle/PaddleClas.git -b release/2.3
```

如果访问 GitHub 网速较慢,可以从 Gitee 下载,命令如下:

```shell
git clone https://gitee.com/paddlepaddle/PaddleClas.git -b release/2.3
```
S
sibo2rr 已提交
24
<a name='2'></a>
G
gaotingquan 已提交
25 26 27 28 29 30 31 32

## 2. 安装 Python 依赖库

PaddleClas 的 Python 依赖库在 `requirements.txt` 中给出,可通过如下命令安装:

```shell
pip install --upgrade -r requirements.txt -i https://mirror.baidu.com/pypi/simple
```