0
1

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.

Homebrewのインストール時に発生したエラーを解決!

Posted at

rbenvをインストールするために、まずはHomebrewをインストールしました。
その際にエラーが出たので解決方法を残しておきます。

Homebrewのインストール

まずはこのコマンドを実行。

console
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

正しくインストールされたか確認

$ brew doctor と打ち込んで確認します。
すると、下記のようなエラーが出ました。

エラー内容

console
Warning: Unbrewed dylibs were found in /usr/local/lib.
If you didn't put them there on purpose they could cause problems when
building Homebrew formulae, and may need to be deleted.

Unexpected dylibs:
  /usr/local/lib/JPKIPKCS11.dylib
  /usr/local/lib/JPKIPKCS11Auth.dylib
  /usr/local/lib/JPKIPKCS11Sign.dylib
  /usr/local/lib/JPKIServiceAPI.dylib

このエラーの内容としては、/usr/local/lib 配下に予期せぬ要らないファイルがあるから削除した方が良いよ〜! ということです。

削除した方が良いファイルは、Unexpected dylibs:以下に表示されているファイルたちです。

そこで、rm -f コマンドを使ってそのファイルたちを削除します。
(-f オプションで「削除しますか?」といった確認を省略できます。)

console
$ rm -f /usr/local/lib/JPKIPKCS11.dylib
...

全て削除したら、もう一度$ brew doctor を行ってみます。

console
$ brew doctor
Your system is ready to brew.

このような表示が出れば完了です!


参考

brew doctorでのWarningを解決してみた(for Mac)

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?