programing

홈브루로 이미지 매직을 설치하려면 어떻게 해야 합니까?

padding 2023. 6. 22. 21:36
반응형

홈브루로 이미지 매직을 설치하려면 어떻게 해야 합니까?

OSX Lion에 Imagemagick을 설치하려고 하는데 예상대로 작동하지 않습니다.

-> brew install imagemagick

/usr/local/git/bin/git
==> Cloning https://github.com/adamv/ImageMagick.git
Cloning into /Users/klebershimabuku/Library/Caches/Homebrew/imagemagick--git...
fatal: https://github.com/adamv/ImageMagick.git/info/refs not found: did you run git      update-server-info on the server?
Error: Failure while executing: git clone --depth 1 https://github.com/adamv/ImageMagick.git /Users/kleber/Library/Caches/Homebrew/imagemagick--git

양조 의사가 말합니다.

-> brew doctor
We couldn't detect gcc 4.0.x. Some formulae require this compiler.

Some "config" scripts were found in your path, but not in system or Homebrew folders.

`./configure` scripts often look for *-config scripts to determine if software packagesare installed, and what additional flags to use when compiling and linking.

Having additional scripts in your path can confuse software installed via Homebrew if the config script overrides a system or Homebrew provided script of the same name.

/Users/kleber/.rvm/gems/ruby-1.9.2-p180@global/bin
passenger-config

Setting DYLD_LIBARY_PATH can break dynamic linking.
You should probably unset it.

예, XCode 4.1이 설치되어 실행 중입니다.

-> brew update
From http://github.com/mxcl/homebrew
* branch            master     -> FETCH_HEAD
Already up-to-date.

시도해 볼 수 있습니다.

brew update && brew install imagemagick

가장 빠른 해결책은 다음과 같습니다.

cd /usr/local
git reset --hard FETCH_HEAD

그리고 다시 시도했습니다.brew install imagemagick그리고 그것은 아담 대신 새 거울에서 패키지를 올바르게 당겼습니다.

그래도 작동하지 않으면 다음 사항을 확인합니다./Library/Caches/Homebrew에는 이미지 매직 파일 또는 폴더가 없습니다.삭제된 경우 삭제합니다.

brew install imagemagick

설치하는 것도 잊지 마십시오.gsPDF를 이미지로 변환하려는 경우 종속성입니다. 예를 들어 다음과 같습니다.

brew install ghostscript

여기서 오래된 쓰레드(및 약간 주제에서 벗어난 내용)에 답하는 것은 로컬 웹 서버에서 실행하기 위해 Mac OS에 Image Magick을 설치하는 방법을 검색할 때 발견한 것입니다.Imagemagick을 설치하기에는 충분하지 않습니다.PHP 모듈이 로드되도록 PECL도 설치해야 합니다.

이 SO 답변에서:

brew install php
brew install imagemagick
brew install pkg-config
pecl install imagick

그리고 당신은 아마도 필요할 것입니다.sudo apachectl restart그러면 다음을 확인합니다.phpinfo()웹 서버에서 실행되는 간단한 php 스크립트 내에서.

그래도 없는 경우 동일한 Mac에서 여러 버전의 PHP를 실행하는 데 문제가 있을 수 있습니다(하나는 명령줄을 통해, 다른 하나는 웹 서버를 통해).이 문제를 해결하는 것은 이 답변의 범위를 벗어나지만 몇 가지 좋은 옵션이 있습니다.

유사한 오류가 발생하여 실행하여 수정했습니다.brew update전에brew install imagemagick

할 수 있는 일:

brew reinstall php55-imagick

여기서 php55는 PHP 버전입니다.

언급URL : https://stackoverflow.com/questions/7053996/how-do-i-install-imagemagick-with-homebrew

반응형