Technical questionAccepted answer
How do I install python on alpine linux?
Cutaraca
Jun 24
0 views1
How do I install python3 and python3-pip on an alpine based image (without using a python image)?
$ apk add --update python3.8 python3-pip
ERROR: unsatisfiable constraints:
python3-pip (missing):
required by: world[python3-pip]
python3.8 (missing):
required by: world[python3.8]
1 answer
Accepted answer · original discussion
Terry Spotts
PermalinkJun 24
This is what I use in a Dockerfile for an alpine image:
# Install python/pip
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
RUN python3 -m ensurepip
RUN pip3 install --no-cache --upgrade pip setuptools
2 question comments
Use comments to ask for clarification. Post a solution as an answer.
Tobias FeilPermalink
Feb 1
You're obviously interested in installing python3.8, not just any version of python3. However, none of the answers address this. Has anyone figured out how to install a specific minor version of python3?