是什么原因导致错误:EACCES:权限被拒绝,访问'/usr/local/lib/node_modules'?

npm ERR! path /usr/local/lib/node_modules
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR!  { Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/usr/local/lib/node_modules' }
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/macbookmd101/.npm/_logs/2018-02-21T16_26_08_421Z-debug.log

当前回答

经过长期的研究,我明白了在mac OS中安装angular cli不需要什么,只需使用sudo npm install -g @angular/cli,你的终端会提示密码,输入你的密码,然后继续安装cli。这对我很管用。

其他回答

我得到了同样的错误,并解决它使用命令

Sudo NPM install -g expo-cli——unsafe-perm

在运行命令后的图像中

然后执行以下命令更新NPM

NPM install -g npm@latest

我很容易就解决了这个问题。

如果在授予权限后仍然不工作,请尝试运行这些命令:

mkdir ~/.npm-global

npm config set prefix '~/.npm-global'

export PATH=~/.npm-global/bin:$PATH

source ~/.profile

最后用这个命令进行测试

NPM install -g jshint

这对Windows不起作用。

对于使用上述解决方案后仍无法解决问题的用户。试试这个

sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}

这应该能成功,干杯!

我用过sudo,但它没有解决问题, 我已经通过改变node_modules文件夹权限修复了这个问题,

sudo chmod -R 777 node_modules

如果你不为所有用户/组设置权限,你可以用任何其他代码替换777。

我能够在mac中使用以下方法解决这个问题。

sudo npm install -g @aws-amplify/cli --unsafe-perm=true