ImageMagick / RMagick-RMagick 2.13.1을 설치할 수 없습니다. Magick-config를 찾을 수 없습니다.
스크립트를 사용하여 ImageMagick http://github.com/masterkain/ImageMagick-sl 을 설치했습니다.
잠시 후 ImageMagick이 설치되었습니다.
그런 다음 sudo gem install rmagick를 실행하고
Building native extensions. This could take a while...
ERROR: Error installing rmagick:
ERROR: Failed to build gem native extension.
.rvm/rubies/ruby-1.9.2-p0/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc... yes
checking for Magick-config... no
Can't install RMagick 2.13.1. Can't find Magick-config in...
Ruby 1.9.2 및 Rails 3을 사용하여 OSX Snow Leopard에서 작업하고 있습니다. 아이디어가 있습니까?
동일한 오류가 발생했으며 우분투 11에 libmagick9-dev 라이브러리를 설치 한 후 해결되었습니다.
업데이트 (코멘트 작성자에게 감사-2012 년 12 월)
$ sudo apt-get install libmagickwand-dev
또는 $ sudo apt-get install graphicsmagick-libmagick-dev-compat
우분투 12의 경우
$ sudo apt-get install libmagickwand-dev
또는 $ sudo apt-get install libmagick9-dev
우분투 11 이하의 경우.
$ yum install ImageMagick-devel
centos를 위해
$ brew install imagemagick
Mac OS 용 (Homebrew 사용)
우분투에서 imagemagick 라이브러리가 필요합니다.
$ sudo apt-get install libmagickwand-dev
누락 된 모든 libraires가 포함되어 있습니다.
그런 다음 bundle install
명령 을 실행하십시오.
Imagemagick 라이브러리가 필요하다고 생각합니다.
Homebrew (내가 강력히 권장하는)를 사용하는 경우 다음을 수행하십시오.
$ brew install imagemagick
그런 다음 번들 설치를 다시 실행하십시오.
Mac OS Mountain Loin (Homebrew 사용)
- http://xquartz.macosforge.org/trac/wiki/X112.7.2 다운로드 및 설치
brew install imagemagick
gem install rmagick
sudo apt-get install libmagickwand-dev
Ubuntu 12.10에서 잘 작동합니다.
이것은 다른 모든 종속성 즉,을 설치했다고 가정합니다.
sudo apt-get install imagemagick ruby ruby-dev gem`
CentOS 5.7에서는 먼저 다음을 지정하여 작동하도록했습니다 PKG_CONFIG_PATH
.
export PKG_CONFIG_PATH=/usr/local/src/ImageMagick-6.7.5-10/magick/
gem install rmagick
받은 사람들을 위해
InitializeMagick() in -lMagickCore... no; -lMagick... no; -lMagick++... no;
이것은 OS X 10.8에서 나를 위해 일했습니다 : https://github.com/maddox/magick-installer
여기에서 : RVM + Ruby 1.9.2 + Rmagick + Lion = 시스템 작동, RVM은 작동하지 않음
처음에는 rmagick을 설치하려고 할 때 종속성으로 보였기 때문에 설치했습니다 libgtk2.0-dev
. RGtk2.0
라는 R 패키지를 사용하기위한 요구 사항 이기 때문에 해당 패키지를 설치하려고했습니다 rattle
.
어쨌든 위의 솔루션 중 어느 것도 Ubuntu 12.04에 설치하는 데 도움이되지 않았습니다. sudo apt-get update
처음 실행하는 것 조차 도움이되지 않는 것 같았고이 관련 게시물 : Ubuntu에 rmagick 설치
결국 작동하는 것이 aptitude
아니라 sudo를 사용하여 문제를 해결하는 것임을 발견했습니다 apt-get
. https://askubuntu.com/questions/223237/unable-to-correct-problems-you-have-held-broken-packages
aptitude
패키지 설치 문제를 해결하기 위해 사용하는 기술을 권장합니다 .
On Mac Os X, check if /opt/local/bin
is in your PATH
. If not:
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
sudo gem install rmagick
This worked for me!
I had an issue installing Rmagick gem version 2.13.2 on Debian Jessie. After fighting with the packages in the other answers, I upgraded the version of the Rmagick gem from 2.13.2 to the latest (2.16.0 at time of writing). This installed successfully.
bundle update rmagick
If you tried all solutions, of all posts of whole Internet, have installed and reinstalled many times all indicated packages in all Linux or Mac distributions/versions (even in Windows) and it still not working, close your terminal and open it again. Some times, even if your reload all shell environment, only after I reopen the terminal the bundle install was successfully completed.
'program tip' 카테고리의 다른 글
@RequestBody MultiValueMap에 대해 콘텐츠 유형 'application / x-www-form-urlencoded; charset = UTF-8'이 지원되지 않습니다. (0) | 2020.11.17 |
---|---|
800px 이후 scrollDown에 div 표시 (0) | 2020.11.16 |
부호없는 정수와 부호있는 정수의 성능 (0) | 2020.11.16 |
이미지 크기 (drawable-hdpi / ldpi / mdpi / xhdpi) (0) | 2020.11.16 |
Lodash : 중첩 된 개체가있을 때 필터를 어떻게 사용합니까? (0) | 2020.11.16 |