##はじめに
homebrewでインストールやアップデートをするときにエラー:「 The following directories are not writable by your user: /usr/local/ 」が出る時がある。
エラー文↓
Error: The following directories are not writable by your user:
/usr/local/
You should change the ownership of these directories to your user.
sudo chown -R $(whoami) /usr/local/
##対処法
「オーナーシップを変更してみてね」と言われているので、エラーの中にある、
sudo chown -R $(whoami) /usr/local/
を入力して、パスワードを打ち込めばOK。