问题描述:
在Mac系统下安装Webpack时报错:
It is likely you do not have the permissions to access this file as the current user
当前用户没有权限访问文件
解决方案:
使用Root用户安装!!!
首先要启用Root用户
Mac如何启用Root用户,请参考Mac启用Root用户。
然后在终端输入命令使用Root用户
su root
再次安装
npm install -g webpack webpack-cli
这样就是安装成功了。
最后,查看版本
webpack -v