我的系统上安装了以下版本: 节点:v8.12.0 npm:6.4.1
现在,当我尝试运行ng --version或以ng开头的任何其他命令时,出现以下错误:
#!/usr/bin/env node
'use strict';
// Provide a title to the process in `ps`.
// Due to an obscure Mac bug, do not start this title with any symbol.
try {
process.title = 'ng ' + Array.from(process.argv).slice(2).join(' ');
} catch(_) {
// If an error happened above, use the most basic title.
process.title = 'ng';
}
// Some older versions of Node do not support let or const.
var version = process.version.substr(1).split('.');
if (Number(version[0]) < 8 || (Number(version[0]) === 8 && Number(version[1]) < 9)) {
process.stderr.write(
'You are running version ' + process.version + ' of Node.js, which is not supported by Angular CLI v6.\n' +
'The official Node.js version that is supported is 8.9 and greater.\n\n' +
'Please visit https://nodejs.org/en/ to find instructions on how to update Node.js.\n'
);
process.exit(3);
}
require('../lib/init');
当我输入ng时,我收到以下消息(见图) 非常感谢您的帮助!!!!
答案 0 :(得分:0)
我一直在尝试解决此问题。最终我发现我设置的路径变量不正确。 然后我给出了正确的路径,可以在Appdata-> Roaming中下载ng并开始工作。
希望它可能对某人有帮助。
答案 1 :(得分:0)
您不能在节点 节点版本低于8.9的最新支持的angular版本为angular/cli@1.7.4,因为从6.0.0-beta.3 here的提交开始,angular / cli需要节点8.9或更高版本。 要降级到angular v5,请执行以下命令:npm uninstall -g @angular/cli
npm cache clean
npm install -g @angular/cli@1.7.4