Como instalar a última versão do imagick no centos 5.8 64bit usando o bash

2

Como posso baixar e instalar a versão mais recente do imagick no centos 5.8 64bit usando o bash para o php 5.4.

>yum info php
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.ellogroup.com
 * epel: mirror01.th.ifl.net
 * extras: mirror.ellogroup.com
 * updates: mirror.ellogroup.com
Installed Packages
Name       : php
Arch       : x86_64
Version    : 5.4.3
Release    : 1.el5.remi
Size       : 8.8 M
Repo       : installed
Summary    : The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor)
URL        : http://www.php.net/
License    : PHP
Description: PHP is an HTML-embedded scripting language. PHP attempts to make it
           : easy for developers to write dynamically generated webpages. PHP also
           : offers built-in database integration for several commercial and
           : non-commercial database management systems, so writing a
           : database-enabled webpage with PHP is fairly simple. The most common
           : use of PHP coding is probably as a replacement for CGI scripts.
           :
           : The php package contains the module which adds support for the PHP
           : language to Apache HTTP Server.
    
por user57221 12.06.2012 / 15:28

2 respostas

1

Você tem um requisito de versão específico para o ImageMagick?

O ImageMagick faz parte da distribuição, por isso yum install ImageMagick.x86_64 fará o download do ImageMagick.
Se você tem php 5.4, isso não faz parte do CentOS 5.8, então verifique de onde veio com yum info php .

Para instalar o suporte ao PHP,

yum install ImageMagick
yum install ImageMagick-devel
pecl install imagick
    
por 12.06.2012 / 15:47
0
yum install ImageMagick
yum install ImageMagick-devel
yum --enablerepo=remi-test install php-devel
yum --enablerepo=remi install ImageMagick2
yum --enablerepo=remi-test install php-pecl-imagick

pkgs.org Este é um site excelente para encontrar qualquer pacote e instalá-lo.

    
por 13.06.2012 / 09:37