PaddleClas/docs/en/installation/install_paddleclas_en.md

39 lines
822 B
Markdown
Raw Normal View History

2021-12-13 15:31:05 +08:00
# Install PaddleClas
---
2021-12-21 19:23:29 +08:00
## Catalogue
2021-12-13 15:31:05 +08:00
* [1. Clone PaddleClas source code](#1)
* [2. Install requirements](#2)
<a name='1'></a>
### 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
```
<a name='2'></a>
2022-08-16 21:54:59 +08:00
## 2. Install PaddleClas and requirements
2022-08-24 15:07:24 +08:00
* **[Recommended]** Installing from PyPI:
2022-08-16 21:54:59 +08:00
```shell
pip install paddleclas
```
2021-12-13 15:31:05 +08:00
2022-08-24 15:07:24 +08:00
* 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:
2021-12-13 15:31:05 +08:00
2022-08-24 15:07:24 +08:00
```shell
python setup.py install
2021-12-13 15:31:05 +08:00
```