2020-09-24 mac安装npm包系统无权限问题

原文 : https://www.jianshu.com/p/59a6bbff4ad2?from=singlemessage

禁用SIP方法

重启系统,按住 Command + R 进入恢复模式

点击顶部菜单栏 实用工具 中的 终端

csrutil disable

输出Successfully disabled System Integrity Protection. Please restart the machine for the changes to take effect.代表成功

重启系统

csrutil enable(开启该权限的命令)

其他解决方法

常用:修改安装目录的权限sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}或者命令前面加sudo。

之后就可以流畅的npm install了。

你可能感兴趣的:(2020-09-24 mac安装npm包系统无权限问题)