bower的安装问题
不用sudo 装不上bower,init的时候提示:
Error: EACCES, permission denied '/home/xm/.config/configstore/insight-bower.yml'
You don't have access to this file.
用sudo bower init又错误:
bower ESUDO Cannot be run with sudo
Additional error details:
Since bower is a user command, there is no need to execute it with superuser permissions.
If you're having permission errors when using bower without sudo, please spend a few minutes learning more about how your system should work and make any necessary repairs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
I think it will be help you :http://beyondweb.cn/bower-cannot-be-run-with-sudo.html
sudo bower install --allow-root
安装的时候需要 sudo npm -g install bower --allow-root
这样安装就没有什么问题。
你现在的问题是用户权限不够造成的,你可以:
sudo chown -R 你所操作的用户名 /home/xm/
这样应该就可以了
希望有帮助!