(Modifica: vedere il fondo per la soluzione) Sto creando un progetto Ruby On Rails e sto cercando di installare la gemma RMagick. Utilizzando OS X 10.6, Ruby versione 2.0.0p247, Rails 4.0.0, RVM 1.22.12.Ruby on Rails Problema di installazione di gemma RMagick
Quando eseguo un pacchetto di installazione ricevo il seguente errore:
...
Installing rmagick (2.13.2)
Errno::EACCES: Permission denied - /Users/jasonpather/.rvm/gems/ruby-2.0.0-p247/g
ems/rmagick-2.13.2/build_tarball.rake
An error occurred while installing rmagick (2.13.2), and Bundler cannot continue.
Make sure that `gem install rmagick -v '2.13.2'` succeeds before bundling.
Allora provo il suggerimento:
Jason-Pathers-MacBook-Pro:BuyABrick jasonpather$ gem install rmagick -v '2.13.2'
ERROR: While executing gem ... (Errno::EACCES)
Permission denied - /Users/jasonpather/.rvm/gems/ruby-2.0.0-p247/gems/rmagick
-2.13.2/build_tarball.rake
Allora provo sudo:
Jason-Pathers-MacBook-Pro:BuyABrick jasonpather$ sudo gem install rmagick -v '2.1
3.2'
Password:
Building native extensions. This could take a while...
ERROR: Error installing rmagick:
ERROR: Failed to build gem native extension.
/Users/jasonpather/.rvm/rubies/ruby-2.0.0-p247/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc-4.2... yes
checking for Magick-config... no
Can't install RMagick 2.13.2. Can't find Magick-config in /Users/jasonpather/.rvm
/gems/ruby-2.0.0-p247/bin:/Users/jasonpather/.rvm/gems/[email protected]/bin
:/Users/jasonpather/.rvm/rubies/ruby-2.0.0-p247/bin:/Users/jasonpather/.rvm/gems/
ruby-2.0.0-p247/bin:/Users/jasonpather/.rvm/gems/[email protected]/bin:/User
s/jasonpather/.rvm/rubies/ruby-2.0.0-p247/bin:/Users/jasonpather/.rvm/bin:/opt/lo
cal/bin:/opt/local/sbin:/opt/local/lib/postgresql83/bin/:/usr/local/bin:/usr/bin:
/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/texbin:/usr/X11/bin
*** 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
--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=/Users/jasonpather/.rvm/rubies/ruby-2.0.0-p247/bin/ruby
Gem files will remain installed in /Users/jasonpather/.rvm/gems/ruby-2.0.0-p247/g
ems/rmagick-2.13.2 for inspection.
Results logged to /Users/jasonpather/.rvm/gems/ruby-2.0.0-p247/gems/rmagick-2.13.
2/ext/RMagick/gem_make.out
Apprezzerei molto ogni aiuto. Ho esaminato domande simili su questo sito ma nessuno dei suggerimenti ha aiutato. Devo installare altri pacchetti prima di installare RMagick o qualcosa del genere?
Edit: soluzione
ho semplicemente usato homebrew installare ImageMagick brew install imagemagick
poi sudo gem install rmagick
ed ora bundle install
corre bene!
I suggerimenti in questa domanda non funzionano? http://stackoverflow.com/q/3704919/1004046 – Pigueiras
Installare 'ImageMagic' prima. Howto: http://www.imagemagick.org/script/binary-releases.php#macosx –
@YevgeniyAnfilofyev Ci sto provando ora e ho seguito le istruzioni su quella pagina, ma quando provo a eseguire 'convert logo: logo .gif' mi dice "Istruzione non valida" e 'bundle install' lancia lo stesso errore. Il metodo che hai collegato funziona con Snow Leopard 10.6 anche se nella descrizione descrive Mountain Lion? EDIT: secondo [questo] (http://stackoverflow.com/questions/2503172/imagemagick-on-mac-osx-snow-leopard-is-there-any-way-to-get-it-to-compile- e-r) il binario è solo Lion :( –