如何为节点安装Angle CLI

App*_*nge 0 angular-cli angular angular-cli-ghpages

我正在尝试安装angular cli,但在消息下方。如何为nodejs v6.xx安装特定的cli cli版本,哪个角度cli版本适用于nodsjs v6.xx?

You are running version v6.x.x of node.js, which is not supported by angular CLI v6. The official Node.js version that is supported is 8.x and greater.
Run Code Online (Sandbox Code Playgroud)

Tim*_*ens 12

我想兼容的最后一个版本node 6.9.x@angular/cli@6.0.8 检查适用于所有版本

npm uninstall -g @angular/cli
npm cache clean --force
npm install -g @angular/cli@6.0.8
Run Code Online (Sandbox Code Playgroud)