1

I was using Ubuntu for development and one of the dependencies needs

apt-get libgraphicsmagick1-dev

now I need to deploy to a AWS EC2 which runs AMI and only support YUM or RPM, what the the equivalent command for the above? Please note that I cannot change the server OS choice. Thanks.

neo
  • 23
  • 4

1 Answers1

5
yum search graphics magick dev
[ ... ]
===================================== N/S Matched: graphics, magick, dev ======================================
GraphicsMagick-devel.x86_64 : Libraries and header files for GraphicsMagick app development

Thus, the equivalent is yum install GraphicsMagick-devel ...

Xavier Lucas
  • 13,095
  • 2
  • 44
  • 50