How to install 6.8.9 devel packages?
Posted: 2014-12-08T12:53:37-07:00
I'm on RHEL and have compiled 6.8.9 from the binary using:
Usually, I would also do
but this installs 6.5.4. How do I get these header files for 6.8.9?
(To be honest, this is probably a newb Unix/RPM/Yum question, rather than ImageMagick, but would appreciate some help)
Thank you!
Code: Select all
yum install -y libpng libpng-devel
curl -LO http://www.imagemagick.org/download/releases/ImageMagick-6.8.9-9.tar.gz
tar -xvzf ImageMagick.tar.gz
cd ImageMagick-6.8.9-9/
./configure --prefix=/usr/local
make install
Code: Select all
yum install -y ImageMagick-devel
(To be honest, this is probably a newb Unix/RPM/Yum question, rather than ImageMagick, but would appreciate some help)
Thank you!