install_paddleclas.md 545 字节
Newer Older
G
gaotingquan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
# 安装 PaddleClas

---

## 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
```

## 2. 安装 Python 依赖库

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

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