gpt4 book ai didi

python - 如何在 alpine linux 上安装 python?

转载 作者:行者123 更新时间:2023-12-03 09:43:33 25 4
gpt4 key购买 nike

如何在基于 alpine 的镜像上安装 python3 和 python3-pip(不使用 python 镜像)?

 $ 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]

最佳答案

这是我在 Dockerfile 中用于 alpine 图像的内容:

# 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

关于python - 如何在 alpine linux 上安装 python?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62554991/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com