I\'m running alpine-linux on a Raspberry Pi 2. I\'m trying to install Pillow via this command:
pip install pillow
This is the output from the
I had very similar problem with installing python library regex in docker pyhton:3.6-alpine image, Alpine linux >= 3.3.
pip install regex
I had to add gcc and musl-dev packages
apk --no-cache add gcc musl-dev