概要
- homebrewでphantomjsをインストールできない問題が発生
$ brew install phantomjs
phantomjs: This formula either does not compile or function as expected on OS X
versions newer than Yosemite due to an upstream incompatibility.
Error: An unsatisfied requirement failed this build.
原因
- こちらの記事に乗っていました
- http://qiita.com/sato_ryu/items/227b00df1e2b5690a816
対策
-
でも、バイナリから入れるのはちょっと抵抗あるなぁと思っていろいろ調べたらこんな記事が
-
どうやら、npm経由でインストールできるとのこと
brew install npm # 入っていない方のみ
npm install phantom phantomjs -g
結果
- 無事インストールされました
$ phantomjs -v
1.9.8
- v2.0は入らないのは時間があるときに調査ということで〜