PaddleClas/docs/en/installation.md

145 lines
5.0 KiB
Markdown
Raw Permalink Normal View History

# Preparation
2021-12-13 15:31:05 +08:00
---
2021-12-21 19:23:29 +08:00
## Catalogue
- [1. Prepara Environment](#1)
- [1.1 Install PaddlePaddle](#1.1)
- [1.1.1 By Docker](#1.1.1)
- [1.1.2 By pip](#1.1.2)
- [1.1.3 Check Installation](#1.1.3)
- [1.2 Get PaddleClas](#1.2)
- [1.3 Install Requirements](#1.3)
- [2. 快速创建PaddlePaddle, PaddleClas环境](#2)
2021-12-13 15:31:05 +08:00
- [1. Environment requirements](#1)
- [2.(Recommended) Prepare a docker environment](#2)
- [3. Install PaddlePaddle using pip](#3)
- [4. Verify installation](#4)
Docker is recomended to run Paddleclas, for more detailed information about docker and nvidia-docker, you can refer to the [tutorial](https://docs.docker.com/get-started/). If you do not want to use docker, you can skip section [1.1.1 (Recommended) Install PaddlePaddle by docker](#1.1.1), and go into section [1.1.2 Install PaddlePaddle by pip](#1.1.2).
2021-12-13 15:31:05 +08:00
2022-01-13 18:24:41 +08:00
<a name="1"></a>
## 1. Prepara Environment
<a name="1.1"></a>
## 1.1 Install PaddlePaddle
2021-12-13 15:31:05 +08:00
- python 3.x
- cuda >= 10.2 (necessary if paddlepaddle-gpu is used)
2021-12-13 15:31:05 +08:00
- cudnn >= 7.6.4 (necessary if paddlepaddle-gpu is used)
- nccl >= 2.1.2 (necessary distributed training/eval is used)
- gcc >= 8.2
**Recomends**:
2021-12-13 15:31:05 +08:00
* When CUDA version is 10.2, the driver version `>= 440.33`;
* For more CUDA versions and specific driver versions, please refer to [link](https://docs.nvidia.com/deploy/cuda-compatibility/index.html).
<a name="1.1.1"></a>
2021-12-13 15:31:05 +08:00
## 1.1.1 (Recommended) Install PaddlePaddle by Docker
2021-12-13 15:31:05 +08:00
* Switch to the working directory
```shell
cd /home/Projects
```
* Create docker container
The following commands will create a docker container named ppcls and map the current working directory to the `/paddle' directory in the container.
```shell
# For GPU users
sudo nvidia-docker run --name ppcls -v $PWD:/paddle --shm-size=8G --network=host -it registry.baidubce.com/paddlepaddle/paddle:2.4.2-gpu-cuda10.2-cudnn7.6-trt7.0 /bin/bash
2021-12-13 15:31:05 +08:00
# For CPU users
sudo docker run --name ppcls -v $PWD:/paddle --shm-size=8G --network=host -it registry.baidubce.com/paddlepaddle/paddle:2.4.2 /bin/bash
2021-12-13 15:31:05 +08:00
```
**Notices**:
* The first time you use this docker image, it will be downloaded automatically. Please be patient;
* The above command will create a docker container named ppcls, and there is no need to run the command again when using the container again;
* The parameter `--shm-size=8g` will set the shared memory of the container to 8g. If conditions permit, it is recommended to set this parameter to a larger value, such as `64g`;
* You can also access [DockerHub](https://hub.Docker.com/r/paddlepaddle/paddle/tags/) to obtain the image adapted to your machine;
* Exit / Enter the docker container:
* After entering the docker container, you can exit the current container by pressing `Ctrl + P + Q` without closing the container;
* To re-enter the container, use the following command:
```shell
sudo docker exec -it ppcls /bin/bash
2021-12-13 15:31:05 +08:00
```
<a name="1.1.2"></a>
2021-12-13 15:31:05 +08:00
## 1.1.2 Install PaddlePaddle by pip
2021-12-13 15:31:05 +08:00
If you want to use PaddlePaddle on GPU, you can use the following command to install PaddlePaddle.
```bash
pip install paddlepaddle-gpu --upgrade -i https://mirror.baidu.com/pypi/simple
```
If you want to use PaddlePaddle on CPU, you can use the following command to install PaddlePaddle.
```bash
pip install paddlepaddle --upgrade -i https://mirror.baidu.com/pypi/simple
```
**Note:**
* If you have already installed CPU version of PaddlePaddle and want to use GPU version now, you should uninstall CPU version of PaddlePaddle and then install GPU version to avoid package confusion.
* You can also compile PaddlePaddle from source code, please refer to [PaddlePaddle Installation tutorial](http://www.paddlepaddle.org.cn/install/quick) to more compilation options.
<a name="1.1.3"></a>
2021-12-13 15:31:05 +08:00
## 1.1.3 Check Installation
2021-12-13 15:31:05 +08:00
```python
import paddle
paddle.utils.run_check()
```
Check PaddlePaddle version
```bash
python -c "import paddle; print(paddle.__version__)"
```
Note:
* Make sure the compiled source code is later than PaddlePaddle2.0.
2022-02-14 20:31:27 +08:00
* Indicate `WITH_DISTRIBUTE=ON` when compiling, Please refer to [Instruction](https://www.paddlepaddle.org.cn/documentation/docs/zh/develop/install/Tables.html#id3) for more details.
2021-12-13 15:31:05 +08:00
* When running in docker, in order to ensure that the container has enough shared memory for dataloader acceleration of Paddle, please set the parameter `--shm-size=8g` at creating a docker container, if conditions permit, you can set it to a larger value.
<a name="1.2"></a>
## 1.2 Get PaddleClas
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="1.3"></a>
## 1.3 Install 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
2023-06-29 11:49:45 +08:00
pip install -v -e .
```