自分用メモ
対象者
$ brew doctor
と打ち、下記のエラーが出た人
Warning: You have unlinked kegs in your Cellar
Leaving kegs unlinked can lead to build-trouble and cause brews that depend on
those kegs to fail to run properly once built. Run `brew link` on these:
python
$ brew link python
と打ってもエラー 💩
エラー内容
Linking /usr/local/Cellar/python/3.6.4_4... Error: Permission denied @ dir_s_mkdir - /usr/local/Frameworks
ディレクトリを調べてみるとそもそも/usr/local/Frameworks
なんていうディレクトリすらなかった。
解決法
ディレクトリ作って権限与えておしまい。
$ sudo mkdir /usr/local/Frameworks
$ sudo chown $(whoami):admin /usr/local/Frameworks
これでbrew link python
終わり
確かEl Capitanにした時も同じような事やった気がする。