Caution
The alpine-wheels organization is currently unmaintained.
This is a PEP 503-compliant Python package index specifically providing wheels built for Alpine Linux.
If you want to use python:alpine Docker containers but you donʼt want to build Python packages yourself, you may find this index useful.
$ pip install --extra-index-url https://alpine-wheels.github.io/index pandas# contents of requirements.txt
--extra-index-url https://alpine-wheels.github.io/index
pandas$ pip install -r requirements.txt# add this to the top of requirements.in
--extra-index-url https://alpine-wheels.github.io/index$ pip-compile# add this section to pyproject.toml
[[tool.poetry.source]]
name = "alpine-wheels"
url = "https://alpine-wheels.github.io/index"$ poetry add pandas# add this section to Pipfile
[[source]]
name = "alpine-wheels"
url = "https://alpine-wheels.github.io/index"
verify_ssl = true$ pipenv install pandasSome tools require a simple index URL to end with /simple. For this case, the index content is also available at
https://alpine-wheels.github.io/index/-/simple.
Is there a package you need that is missing from the index? Open an issue to suggest it. We only support packages that are available on PyPI but do not already have a wheel that is compatible with Alpine Linux.
To add a new package, do not fork this repository directly; make a new repository for the individual package using https://github.com/alpine-wheels/_template.