0
0

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 3 years have passed since last update.

環境構築エラー対処:MySQLインストールエラー

Last updated at Posted at 2021-09-21

エラー内容:書き込み権限がありません。ownershipに変更するか、書き込み権限があることを確認してください。

Error: The following directories are not writable by your user:
/usr/local/lib/pkgconfig

You should change the ownership of these directories to your user.
  sudo chown -R $(whoami) /usr/local/lib/pkgconfig

And make sure that your user has write permission.
  chmod u+w /usr/local/lib/pkgconfig

対処:ownershipを変更

 sudo chown -R sbn122 /usr/local/lib/pkgconfig

// fileに対してユーザーアクセス(u)に書き込み権限(w)を設定する
 sudo chmod u+w (file名)/usr/local/lib/pkgconfig

 brew install mysql
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?