# Installing Pip On Alpine

To install `pip` on Alpine we need to add following packages -

### Example

```bash
apk add --update py-pip
```

This will install pip as well its dependencies.

***Source:*** [***StackOverFlow***](https://stackoverflow.com/a/44634480)
