Problema de instalación de RMagick


12

No puedo instalar RMagick debido al siguiente problema de dependencia después de intentarlo sudo apt-get install libmagick9-dev( requerido de acuerdo con esto ) en Ubuntu 10.0.4:

Note, selecting libmagickwand-dev instead of libmagick9-dev Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies:
    libmagickwand-dev:
        Depends: libmagickwand2 (= 7:6.5.7.8-1ubuntu1.1) but it is not going to be installed
        Depends: libmagickcore2-extra (= 7:6.5.7.8-1ubuntu1.1) but it is not going to be installed
        Depends: libmagickcore-dev (= 7:6.5.7.8-1ubuntu1.1) but it is not going to be installed

Intentando instalar apt-get libmagickwand2, obtengo esto:

> The following packages have unmet dependencies:   libmagickwand2:
> Depends: libice6 (>= 1:1.0.0) but it is not installable
>                   Depends: libjpeg62 but it is not installable
>                   Depends: libmagickcore2 (>= 7:6.5.7.8) but it is not going to be installed
>                   Depends: libsm6 but it is not installable
>                   Depends: libtiff4 but it is not going to be installed
>                   Depends: libxt6 but it is not installable

Respuestas:


17

Esto funciona:

sudo apt-get install imagemagick libmagickcore-dev libmagickwand-dev

según el comentario de dalibor-filus a continuación.

[ Respuesta original: está bien, parece que resolví esto apt-get install imagemagick libmagickwand-dev, así que libmagick9-dev no era necesario. ]


1
Esto funcionó para mí. Solo quiero señalar que requieren 'rmagick' todavía no funcionará. Tienes que usar require 'RMagick'.
ayckoster

Esto no funciona para mi. Obtengo: libmagickwand-dev: Depende: libmagickcore-dev (= 8: 6.6.0.4-3ubuntu1.2) pero no se instalará
jackocnr

lo mismo aquí ... obteniendo este error: gist.github.com/4709742
TrinitronX

1
@TrinitronX @jackocnr primero tienes que instalar libmagickcore-dev y luego libmagickwand-dev, acabo de superar esto en Ubuntu 14.04 LTS. (Debe ser capaz de instalarlos en una línea de comandos, de la siguiente manera: sudo apt-get install imagemagick libmagickcore-dev libmagickwand-dev)
Dalibor Filus

0

Tuve este problema en Ubuntu 11.10, y la solución de @ mahemoff no funcionó para mí. Al final, desinstalé todo lo que tenía que ver con ImageMagick, y luego compilé la última versión de ImageMagick desde la fuente, y luego instalé rmagick perfectamente.


Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.