Por que estou recebendo “Nenhum arquivo ou diretório” após a instalação?

0

Se eu comandar convert --version , isso mostra isso.

bash: /usr/bin/convert: No such file or directory

Tudo o que fiz foi isso

1. $ wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
2. $ tar xvzf ImageMagick.tar.gz
3. $ cd ImageMagick-6.8.2-10
4. $ ./configure --prefix=/usr/local --with-bzlib=yes --with-fontconfig=yes --with-freetype=yes --with-gslib=yes --with-gvc=yes --with-jpeg=yes --with-jp2=yes --with-png=yes --with-tiff=yes
5. $ make
6. $ make install
    
por HUSTEN 12.02.2013 / 05:58

2 respostas

1

/usr/local/bin não está em $PATH por padrão no CentOS. Adicione-o ou execute yum install ImageMagick para instalar o ImageMagick a partir dos repositórios do CentOS.

    
por 12.02.2013 / 06:03
0

Não instale software a partir da fonte, a menos que seja estritamente necessário. Acredito que o ImageMagick está no CentOS e o GraphicsMagick (um dos exemplos acima) está em EPEL

    
por 23.02.2013 / 02:27