Imagemagick package problems

Paint programs, vector editors, 3d modelers, animation editors, etc.
Post Reply
Message
Author
ccaaee
Posts: 48
Joined: Sat 27 Feb 2010, 17:10

Imagemagick package problems

#1 Post by ccaaee »

I've used imagemagick for so many years that I cannot live without it. Being able to manipulate photos quickly from the CLI has become a necessity.

I've recently moved to puppy 18.05 and after installing imagemagick from PPM the command line "convert" yields:

convert: command not found...

Is anyone else using imagemagic in 18.05 ???

Thanks

ccaaee

User avatar
fredx181
Posts: 4448
Joined: Wed 11 Dec 2013, 12:37
Location: holland

#2 Post by fredx181 »

I think you'll have to create symlinks, e.g. for convert:

Code: Select all

cd /usr/bin
ln -s convert-im6.q16 convert
Or/and similar for e.g. montage,

Code: Select all

ln -s montage-im6.q16 montage
Ubuntu and Debian does all this symlinking automatically (from postinstall script), but apparently Puppy doesn't work that way.

EDIT: This little script will symlink them all:

Code: Select all

#/bin/bash

cd /usr/bin
for i in *-im6.q16; do
ln -s $i "${i%%-*}"
done
Fred

ccaaee
Posts: 48
Joined: Sat 27 Feb 2010, 17:10

#3 Post by ccaaee »

Thanks a million Fred

Post Reply