如何在 Alpine Linux 上安装 python-config
我推荐使用 Python 3.x,因为 Python 2.x 已弃用!
为 Python 3.x 安装 python-config
python3-dev apk 包提供 /usr/bin/python3-config,所以你必须将其符号链接到 /usr/bin/python-config:
install_python3_config.sh
apk update
apk add python3-dev
ln -sf /usr/bin/python3-config /usr/bin/python-config为 Python 2.x 安装 python-config
只需安装 python2-dev,它安装/usr/bin/python-config
install_python2_config.sh
apk update
apk add python2-devCheck out similar posts by category:
Alpine Linux
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow