I can see libfreeimage3-dev in synaptic and have installed it from there, but what is it that I can't see it from the command line? I tried sudo aptitude update...

mike@sleepycat:~$ sudo aptitude search '~n.*freeimage3.*'
i   libfreeimage3                   - Support library for graphics image formats
p   libfreeimage3-dbg               - Support library for graphics image formats

Any ideas?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

The package you want is actually libfreeimage-dev. Your pattern doesn't match that, because it has the 3 in it.

Also, your pattern is overly complicated, and searching doesn't need sudo. Instead:

aptitude search freeimage

which returns:

p   libfreeimage-dev         - Support library for graphics image formats
p   libfreeimage3            - Support library for graphics image formats
p   libfreeimage3-dbg        - Support library for graphics image formats
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.