Railsの開発環境をつくるために、homebrewを導入したいのですがbrew doctor
と入れると下記のエラーメッセージが表示されます。
Ruby
1$ brew doctor ✘ 1 2Please note that these warnings are just used to help the Homebrew maintainers 3with debugging if you file an issue. If everything you use Homebrew for is 4working fine: please don't worry or file an issue; just ignore this. Thanks! 5 6Warning: /usr/local is not writable. 7 8You should change the ownership and permissions of /usr/local 9back to your user account. 10 sudo chown -R $(whoami) /usr/local
いくつかのサイトでは同様のエラーに対して、sudo chown -R $(whoami):admin /usr/local
と打つことで解決できるとあるため、まずこれをそのまま記述してみました。
その結果、以下のように表示されました。
ruby
1chown: /usr/local: Operation not permitted
この場合の対処がどうしてもよくわからず質問させて頂きました。
- macOS high sierra version 10.13.3
##改善できたので解決策を残しておきます。
1.homebrewをアンインストールする
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
2.再インストールする
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
これだけで無事に解決できました。fiwaさんありがとうございました!
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/03/11 07:32