30

My application needs to call 'convert' - http://linux.about.com/od/commands/l/blcmdl1_convert.htm

But its not present on my redhat system. How / what do I install?

siliconpi
  • 1,707
  • 6
  • 30
  • 45

4 Answers4

45

convert is part of the package ImageMagick; try sudo yum install ImageMagick (or other privilege escalation method as appropriate to your system).

MadHatter
  • 78,442
  • 20
  • 178
  • 229
19

Next time you need a command like this you can figure out what package to install by running something like yum whatprovides '*/convert'.

Caleb
  • 11,583
  • 4
  • 35
  • 49
15

To install convert try package manager. Convert is part of ImageMagick package, convert is one of utilities.

Under Debian is possible use

sudo dpkg --install imagemagick

or

sudo apt-get install imagemagick

It is about 419 MB of space.

user3.1415
  • 171
  • 1
  • 3
-1

For the installation in Fedora 27 from the terminal:

sudo yum install ImageMagick -y
Andrew Schulman
  • 8,561
  • 21
  • 31
  • 47