How do I install packages? - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120) +--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121) +---- Forum: PostmarketOS on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=124) +---- Thread: How do I install packages? (/showthread.php?tid=12112) |
How do I install packages? - cefre00 - 11-11-2020 Hi All! I tried to install packages using "sudo apk add xxx" or simply to check the upgrades via "sudo apk upgrade". Nothing really works... All I get is ERROR: unable to select packages: cmd: convert (virtual): provided by:imagemagick required by: megapixels ... What do I do wrong? Thank you! RE: How do I install packages? - ThrillGates - 11-11-2020 Check out thisĀ package management wiki for Alpine Linux. All of it should apply to PMOS. RE: How do I install packages? - hiimtye - 11-11-2020 you need to add the imagemagick package before doing anything: sudo (apk add imagemagick; apk upgrade) RE: How do I install packages? - cefre00 - 11-12-2020 (11-11-2020, 06:05 PM)hiimtye Wrote: you need to add the imagemagick package before doing anything: Thank you, worked out fine. |