我正在运行vagrant provision
,最后一步失败了"错误安装' gulp'"。见下文。
这是什么意思以及如何解决它?没有人经营过这个流浪剧本曾经遇到过这个问题。
Stderr from the command:
stdin: is not a tty
[ERROR ] Command 'npm install --silent --json --global "gulp"' failed with return code: 1
[ERROR ] stdout:
> v8flags@1.0.1 install /usr/local/lib/node_modules/gulp/node_modules/v8flags
> node fetch.js
[ERROR ] stderr: sh: 1: node: not found
[ERROR ] Error installing 'gulp': sh: 1: node: not found
我尝试手动安装$ sudo npm install --json --global "gulp"
,但它给了我一个错误:
> v8flags@1.0.1 install /usr/local/lib/node_modules/gulp/node_modules/v8flags
> node fetch.js
sh: 1: node: not found
npm WARN This failure might be due to the use of legacy binary "node"
npm WARN For further explanations, please read
/usr/share/doc/nodejs/README.Debian
答案 0 :(得分:0)
npm是Node.js的软件包安装程序,您的错误消息指出无法找到该节点。
答案 1 :(得分:0)
我的问题的解决方案是直接在VM上安装此软件包并重新运行vagrant provision
:
sudo apt-get install nodejs-legacy
这是帮助我的参考:Cannot install packages using node package manager in Ubuntu