繁体   English   中英

全局安装grunt.js失败

[英]Global installation of grunt.js fails

我可以使用npm install grunt在本地安装gruntjs

但是,当我尝试全局安装它时,我会收到一个错误: npm install grunt -g

npm ERR! Error: EACCES, symlink '../lib/node_modules/grunt/bin/grunt'
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.
npm ERR! 
npm ERR! System Linux 2.6.18-92.el5xen
npm ERR! command "nodejs" "/usr/bin/npm" "install" "grunt" "-g"
npm ERR! cwd /home/lj
npm ERR! node -v v0.6.18
npm ERR! npm -v 1.1.19
npm ERR! path ../lib/node_modules/grunt/bin/grunt
npm ERR! code EACCES
npm ERR! message EACCES, symlink '../lib/node_modules/grunt/bin/grunt'
npm ERR! errno {}

npm ERR! Error: EACCES, open 'npm-debug.log'
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.
npm ERR! 
npm ERR! System Linux 2.6.18-92.el5xen
npm ERR! command "nodejs" "/usr/bin/npm" "install" "grunt" "-g"
npm ERR! cwd /home/lj
npm ERR! node -v v0.6.18
npm ERR! npm -v 1.1.19
npm ERR! path npm-debug.log
npm ERR! code EACCES
npm ERR! message EACCES, open 'npm-debug.log'
npm ERR! errno {}
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/lj/npm-debug.log
npm not ok

使用sudo我也有错误:

npm ERR! Error: spawn ENOENT
npm ERR!     at errnoException (child_process.js:483:11)
npm ERR!     at ChildProcess.spawn (child_process.js:446:11)
npm ERR!     at child_process.js:342:9
npm ERR!     at Object.execFile (child_process.js:252:15)
npm ERR!     at uidNumber (/usr/lib/nodejs/uid-number/uid-number.js:33:17)
npm ERR!     at loadUid (/usr/lib/nodejs/npm/lib/npm.js:336:5)
npm ERR!     at Array.2 (/usr/lib/nodejs/bind-actor.js:15:8)
npm ERR!     at LOOP (/usr/lib/nodejs/chain.js:15:13)
npm ERR!     at /usr/lib/nodejs/chain.js:18:7
npm ERR!     at setUser (/usr/lib/nodejs/npm/lib/npm.js:346:32)
npm ERR! You may report this log at:
npm ERR!     <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR!     <npm-@googlegroups.com>
npm ERR! 
npm ERR! System Linux 2.6.18-92.el5xen
npm ERR! command "nodejs" "/usr/bin/npm" "install" "grunt" "-g"
npm ERR! cwd /home/lj
npm ERR! node -v v0.6.18
npm ERR! npm -v 1.1.19
npm ERR! syscall spawn
npm ERR! code ENOENT
npm ERR! message spawn ENOENT
npm ERR! errno {}
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/lj/npm-debug.log
npm not ok

我该怎么做才能安装它?

PS某些文件夹的权限可能是root:root ,而不是我的用户。 我们的管理员以这种方式安装了VM ...

我也有咕噜声和凉亭这个问题

我发现的解决方案是在本文NPM配置中

在.npmrc中,您需要设置前缀路径

prefix = /usr/local

或者你可以从终端这样做:

npm config set prefix "/usr/local"

这种方式节点将知道安装它们的位置:

在npm 1.0中,有两种安装方式:

全局 - 这会将模块放在{prefix} / lib / node_modules中,并将可执行文件放在{prefix} / bin中,其中{prefix}通常类似于/ usr / local。 它还在{prefix} / share / man中安装手册页,如果它们已经提供的话。

本地 - 这会将您的软件包安装在当前工作目录中。 节点模块进入./node_modules,可执行文件进入./node_modules/.bin/,并且根本没有安装手册页。

尝试chowning node_modules文件夹,然后再次尝试安装:

sudo chown -R $USER /path/to/node_modules/folder

遇到同样的问题。 以下适用于我:

sudo npm install -g grunt-cli

试试sudo npm install -g grunt

添加选项--no-bin-links效果很好。 我尝试了一切,只有这解决了我的问题。 我在ubuntu 12.04上安装了Yeoman,它总是返回错误:

npm ERR! Error: EACCES, symlink '../lib/node_modules/yo/cli.js'

然后,我做了:

npm install -g --no-bin-links yo

= d

有关详细信息, 请访问https://github.com/isaacs/npm/issues/2380

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM