前端 - 使用brew安装imagemagick和graphicsmagick失败?

 

问题描述:

想要使用gm模块实现图片水印的功能,使用brew安装出现问题。
运行

brew install imagemagick
brew install graphicsmagick

出现
Error: imagemagick: Invalid bottle tag symbol
Error: graphicsmagick: Invalid bottle tag symbol

请问是什么原因引起的?


 

第 1 个答案:

试试这两个

$ brew update
$ brew install imagemagick --disable-openmp --build-from-source

后端 - nginx黑名单可以设置成只针对某个域名吗?:众所周知,在 nginx.conf 配置文件 http 段中加入:deny 123.0.0.1;就可以禁止 123.0.0.1 访问 nginx 服务,我目前的情况是这个 nginx ...