> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/alpine/installing-pip-on-alpine.md).

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