使用npm安装gulp

7
我正在尝试通过npm命令在数字海洋Droplet上安装gulp(包括使用sudo和不使用sudo的命令):
npm install -g gulp

我遇到了一些错误,无法解决:

> v8flags@1.0.5 install /root/local/lib/node_modules/gulp/node_modules/v8flags
> node fetch.js

sh: 1: node: Permission denied
npm ERR! Linux 3.13.0-24-generic
npm ERR! argv "node" "/root/local/bin/npm" "install" "-g" "gulp"
npm ERR! node v0.10.33
npm ERR! npm  v2.1.11
npm ERR! code ELIFECYCLE

npm ERR! v8flags@1.0.5 install: `node fetch.js`
npm ERR! Exit status 127
npm ERR!
npm ERR! Failed at the v8flags@1.0.5 install script 'node fetch.js'.
npm ERR! This is most likely a problem with the v8flags package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node fetch.js
npm ERR! You can get their info via:
npm ERR!     npm owner ls v8flags
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /root/local/bin/npm-debug.log

根据此指南,进行节点安装。
1个回答

13

我曾经遇到过同样的问题,安装一个早期版本的gulp对我有帮助:

sudo npm install -g gulp@3.8.8

我在这里找到了这个链接:http://forum.ionicframework.com/t/osx-error-v8flags-after-npm-update-ionic/13905/5 我还尝试了其他一些解决方案,包括在这里提到的:NPM cannot install dependencies - Attempt to unlock something which hasn't been locked,但这些都没有对我起作用。
我遇到的错误是:
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
/
node.js:815
    var cwd = process.cwd();
                      ^
Error: EACCES, permission denied
    at Function.startup.resolveArgv0 (node.js:815:23)
    at startup (node.js:58:13)
    at node.js:906:3

你应该发布代码示例,而不是链接,因为链接不能保证是静态的。 - Bob.
编辑以突出相关代码,链接仅供参考。 - Eric Grotke

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接