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.
このような表示が出れば完了です!