Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490
npm ERR! code EACCES
npm ERR! syscall access
npm ERR! path /usr/local/lib/node_modules/npm/node_modules/abbrev
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules/npm/node_modules/abbrev'
npm ERR! [Error: EACCES: permission denied, access '/usr/local/lib/node_modules/npm/node_modules/abbrev'] {
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/usr/local/lib/node_modules/npm/node_modules/abbrev'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/********/.npm/_logs/2021-08-30T12_40_57_778Z-debug.log
まず以下のコマンドで、configの設定を確認してください。Shell
1 | npm config get prefix |
想定する結果画面Shell
1 | /usr/local |
もしも「/usr/local」ではない場合は、以下のサイトの「対策2」または、「対策3」を参照してみてください。
Qiita: npmでpermission deniedになった時の対処法[mac]
自分をオーナーにするコマンドを実行します。PCのパスワードを聞かれるので入力しましょう。Shell
1 | sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share} |
chownに-Rオプションがついているので、このディレクトリ以下の権限が全て変更されます。