2014-11-29 20 views
9

Quando si tenta di installare fileutils gioiello vengo seguenti output:Impossibile installare fileutils rubygem su ubuntu 14.04 LTS

No package 'MagickCore' found 
Package MagickCore was not found in the pkg-config search path. 
Perhaps you should add the directory containing `MagickCore.pc' 
to the PKG_CONFIG_PATH environment variable 
No package 'MagickCore' found 
Package MagickCore was not found in the pkg-config search path. 
Perhaps you should add the directory containing `MagickCore.pc' 
to the PKG_CONFIG_PATH environment variable 
No package 'MagickCore' found 
Package MagickCore was not found in the pkg-config search path. 
Perhaps you should add the directory containing `MagickCore.pc' 
to the PKG_CONFIG_PATH environment variable 
No package 'MagickCore' found 
checking for stdint.h... yes 
checking for sys/types.h... yes 
checking for wand/MagickWand.h... no 

Can't install RMagick 2.13.4. Can't find MagickWand.h. 
*** extconf.rb failed *** 
Could not create Makefile due to some reason, probably lack of necessary 
libraries and/or headers. Check the mkmf.log file for more details. You may 
need configuration options. 

Provided configuration options: 
    --with-opt-dir 
    --without-opt-dir 
    --with-opt-include 
    --without-opt-include=${opt-dir}/include 
    --with-opt-lib 
    --without-opt-lib=${opt-dir}/lib 
    --with-make-prog 
    --without-make-prog 
    --srcdir=. 
    --curdir 
    --ruby=/home/aditya/.rvm/rubies/ruby-2.1.1/bin/ruby 

extconf failed, exit code 1 

Gem files will remain installed in /home/aditya/.rvm/gems/ruby-2.1.1/gems/rmagick-2.13.4 for inspection. 
Results logged to /home/aditya/.rvm/gems/ruby-2.1.1/extensions/x86_64-linux/2.1.0/rmagick-2.13.4/gem_make.out 

Sembra che ci sia qualche problema con RMagick, ImageMagick è installato correttamente e sul tentativo di installare RMagick gemma ottengo l'errore che un pacchetto manca: libmagickwand-dev

Quando provo ad installare questo pacchetto ottengo l'errore seguente:

The following packages have unmet dependencies: 
libmagickwand-dev : Depends: libmagickcore-dev (= 8:6.6.9.7-5ubuntu3.3) but it is not going to be installed 
E: Unable to correct problems, you have held broken packages. 
+2

Questo potrebbe aiutare [rmagick gem install "Impossibile trovare Magick-config"] (http://stackoverflow.com/questions/5201689/rmagick-gem-install-cant-find-magick-config) –

+0

http : //askubuntu.com/questions/140246/how-do-i-resolve-unmet-dependencies-after-adding-a-ppa/230958#230958 – codebold

+0

E anche: http://stackoverflow.com/questions/9050419/ cant-install-rmagick-2-13-1-cant-find-magickwand-h – Sam

risposta

0

da quello che posso s ee che la gemma è stata rimossa, non c'è nessuna fonte disponibile, quindi se è possibile è possibile scegliere un'altra gemma come metadata

19

In esecuzione sudo apt-get install libmagickwand-dev risolto il problema per me.

+0

Questo ha funzionato anche per me su Debian Jessie. – Dan

3

Installare questi due pacchetti

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

Nei tuoi Gemfile aggiungere queste righe

# To perform file operations 
gem 'rmagick' 
gem 'fileutils', '~> 0.7' 

Quindi è possibile installare le gemme eseguendo

bundle install 

E come un output del comando dovresti vedere qualcosa di simile a questo ...

... 
Installing rmagick 2.13.4 
Installing fileutils 0.7 
.... 
Your bundle is complete! 
Problemi correlati