为什么npm在安装grunt、yeoman等包时老是出错?

发布于 2022-09-01 05:26:41 字数 1237 浏览 28 评论 0

小白不太懂,帖出命令行求助!

npm ERR! tar.unpack untar error /Users/xuliang/.npm/grunt-cli/0.1.13/package.tgz
npm ERR! Darwin 14.0.0
npm ERR! argv "node" "/usr/local/bin/npm" "install" "-g" "grunt-cli"
npm ERR! node v0.12.0
npm ERR! npm  v2.5.1
npm ERR! path /usr/local/lib/node_modules/grunt-cli
npm ERR! code EACCES
npm ERR! errno -13

npm ERR! Error: EACCES, mkdir '/usr/local/lib/node_modules/grunt-cli'
npm ERR!     at Error (native)
npm ERR!  { [Error: EACCES, mkdir '/usr/local/lib/node_modules/grunt-cli']
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   path: '/usr/local/lib/node_modules/grunt-cli',
npm ERR!   fstream_type: 'Directory',
npm ERR!   fstream_path: '/usr/local/lib/node_modules/grunt-cli',
npm ERR!   fstream_class: 'DirWriter',
npm ERR!   fstream_stack: 
npm ERR!    [ '/usr/local/lib/node_modules/npm/node_modules/fstream/lib/dir-writer.js:36:23',
npm ERR!      '/usr/local/lib/node_modules/npm/node_modules/mkdirp/index.js:46:53',
npm ERR!      'FSReqWrap.oncomplete (fs.js:99:15)' ] }
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/xuliang/npm-debug.log

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

洒一地阳光 2022-09-08 05:26:41

看 log 啊,Please try running this command again as root/Administrator.
解决方法楼上给出了,命令前面加 sudo.

另外可以看看 http://stackoverflow.com/questions/16151018/npm-throws-error-without-sudo 这里。

四叶草在未来唯美盛开 2022-09-08 05:26:41

安装过程中没有操作权限,使用管理员身份执行就可以了。
例如 sudo npm install xx

指尖上的星空 2022-09-08 05:26:41
npm ERR! Darwin 14.1.0
npm ERR! argv "node" "/usr/local/bin/npm" "install" "-g" "grunt-cli"
npm ERR! node v0.10.36
npm ERR! npm  v2.6.1
npm ERR! path /usr/local/lib/node_modules/grunt-cli/.npmignore
npm ERR! code EACCES
npm ERR! errno 3

npm ERR! Error: EACCES, unlink '/usr/local/lib/node_modules/grunt-cli/.npmignore'
npm ERR!  { [Error: EACCES, unlink '/usr/local/lib/node_modules/grunt-cli/.npmignore']
npm ERR!   errno: 3,
npm ERR!   code: 'EACCES',
npm ERR!   path: '/usr/local/lib/node_modules/grunt-cli/.npmignore' }
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.
npm ERR! error rolling back Error: EACCES, unlink '/usr/local/lib/node_modules/grunt-cli/.npmignore'
npm ERR! error rolling back  { [Error: EACCES, unlink '/usr/local/lib/node_modules/grunt-cli/.npmignore']
npm ERR! error rolling back   errno: 3,
npm ERR! error rolling back   code: 'EACCES',
npm ERR! error rolling back   path: '/usr/local/lib/node_modules/grunt-cli/.npmignore' }

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/kacperwang/git/express/npm-debug.log

这样安装成功了 sudo npm install -g grunt-cli

余生共白头 2022-09-08 05:26:41

我也遇到了一样的坑,用runas administrator账户就行。
cmd 里面输入runas /user:administrator cmd。
win7默认禁用的 administrator 帐号. lusrmgr.msc 开启

椒妓 2022-09-08 05:26:41

用管理员权限打开cmd命令框就可以了。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文