# Install PaddleClas
---
## Catalogue
* [1. Clone PaddleClas source code](#1)
* [2. Install requirements](#2)
### 1. Clone PaddleClas source code
```shell
git clone https://github.com/PaddlePaddle/PaddleClas.git -b develop
```
If it is too slow for you to download from github, you can download PaddleClas from gitee. The command is as follows.
```shell
git clone https://gitee.com/paddlepaddle/PaddleClas.git -b develop
```
## 2. Install PaddleClas and requirements
* **[Recommended]** Installing from PyPI:
```shell
pip install paddleclas
```
* Please build and install locally if you need to use the develop branch of PaddleClas to experience the latest functions, or need to redevelop based on PaddleClas. The command is as follows:
```shell
python setup.py install
```