brew install 実行時に下記のエラーがでた
cp: utimes: /usr/local/Cellar/gettext/.: Operation not permitted
cp: chmod: /usr/local/Cellar/gettext/.: Operation not permitted
Error: Failure while executing; `cp -pR /private/tmp/d20210405-78012-1fygwiz/gettext/. /usr/local/Cellar/gettext` exited with 1. Here's the output:
cp: utimes: /usr/local/Cellar/gettext/.: Operation not permitted
cp: chmod: /usr/local/Cellar/gettext/.: Operation not permitted
次のコマンドでなおった
sudo chown -R $(whoami) /usr/local/Cellar
Linuxコマンド【 chown 】ファイルの所有者やグループを変更 - Linux入門 - Webkaru
Linuxコマンド【whoami】現在のユーザー名を表示 - Linux入門 - Webkaru
homebrewとは何者か。仕組みについて調べてみた - Qiita
https://qiita.com/saba1024/items/0f397b3f59d28e0ef527
- インストールしたパッケージが
/usr/local/Cellar
に保存されるみたい -
/usr/local/Cellar
の所有権を現在のユーザー名に変更している
以前、別のMacユーザーで brew install 実行してたのが原因かも?
jemalloc
ってなんだろ