> 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-python2-on-alpine.md).

# Installing Python2 On Alpine

We can install Python2 on Alpine using `python2` package.

### Example

```bash
apk add --no-cache python2
```

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