npm安装提示‘current user ("nobody") does not have permission to access the dev dir’

此解决方案针对mac linux系统

已经使用了sudo安装npm包,但是安装过程中还是提示没有安装权限。

image.png

这是因为当前安装的Npm包有其他的读写系统文件的操作,但是这些操作并不是以root的角色进行的,就会出现权限不够的问题。

npm已经给出了解决方案,把npm user的权限设为root即可:

npm -g config set user root

参考资料:
No access permission error with npm global install on docker image

你可能感兴趣的:(npm安装提示‘current user ("nobody") does not have permission to access the dev dir’)