如何修复 Alpine Linux ERROR: 'install' is not an apk command
问题:
你正在尝试使用例如以下命令安装 apk 包
apk_install_example.sh
apk install python但你看到此错误消息:
apk_error_output.txt
ERROR: 'install' is not an apk command. See 'apk --help'.解决方案
使用 apk add 而不是 apk install 在 Alpine Linux 上安装包!
所以而不是
wrong_apk_install.sh
apk install python使用
correct_apk_add.sh
apk add pythonCheck 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