9
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacOS Serriaにしてからbrew install できなくなった

Last updated at Posted at 2016-11-02

brew install できない

brew install
としてもエラーが出る。Serriaになってから、userなどのディレクトリの制限が変わったらしい。アップデートしてエラーが出るのはマジではやめてくれ泣
エラーを読むと
sudo chown $(whoami):admin /usr/local
をすればいいらしい。

chown: command not found てでた

調べてみると、以下のコマンドを打てばchownが使えるようになるらしい。
export PATH="$PATH:/usr/sbin"
これを打つとパスを通すらしい(参考文献)。こういう時のために、pathとかシェルの基本的な知識を身につけていたら・・・

再び chown

sudo chown $(whoami):admin /usr/local
できた。

再び brew install

brew install
なんかエラーでた。エラーメッセージを残さなかったが、最新のxcode(8.1)をダウンロードしろみたいなことを言ってる。

App Storeから最新のXcode(8.1)をダウンロードする

待ち時間3時間? Fuck Up

三度brew install

なんかxcodeを認証してくれ見たいなエラーがでた!でも親切に
sudo xcodebuild -license accept
をすればいいよと書いてくれた。homebrew大好き。

sudo xcodebuild -license accept からの brew install

やっとできた。

総評

Picture in Pictureにつられてアップデートするんじゃなかった。

参考文献

9
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?