问题
最近测试在 linux 下使用 root 权限执行 npm install 报错了,错误如下:
解决
在执行命令后面添加参数: --unsafe-perm=true --allow-root
npm install --unsafe-perm=true --allow-root
原因
unsafe-perm
Default: false if running as root, true otherwise
Type: Boolean
Set to true to suppress the UID/GID switching when running package scripts. If set explicitly to false, then installing as a non-root user will fail.
原因可以参考下面的文章:
使用root用户npm install