Alpine Linux ERROR: 'install' is not an apk command beheben

English Deutsch

Problem:

Beim Versuch, ein apk-Paket zu installieren mit z.B.

apk_install_example.sh
apk install python

erscheint diese Fehlermeldung:

apk_error_output.txt
ERROR: 'install' is not an apk command. See 'apk --help'.

Lösung

Stattdessen apk add anstelle von apk install verwenden, um Pakete unter Alpine Linux zu installieren!

Also anstelle von

wrong_apk_install.sh
apk install python

verwenden

correct_apk_add.sh
apk add python

Check out similar posts by category: Alpine Linux