如何为节点安装Angle CLI

时间:2018-08-01 08:13:12

标签: angular angular-cli angular-cli-ghpages

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

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.

3 个答案:

答案 0 :(得分:6)

我认为与node 6.9.x兼容的最新版本是@angular/cli@6.0.8 检查this的所有版本

npm uninstall -g @angular/cli
npm cache clean --force
npm install -g @angular/cli@6.0.8

答案 1 :(得分:0)

您必须在package.json文件中调整angular-cli的版本。 angular-cli应该有一个条目。看下面的图片。在devDependencies下,您可以看到@angular/cli及其版本。更改此版本,然后再次调用npm install

enter image description here

package.json位于您的角度项目的根目录中。当您完成npm init时,它会自动生成。

答案 2 :(得分:-1)

如果要在系统上安装最新版本的Node,可以升级或卸载当前节点版本,然后在官方节点站点下面下载并安装-   https://nodejs.org/en/download/

要检查当前已安装的节点版本,请使用

1. Window key+ r -> opens run window
2. Type cmd press enter.
3. Type node -v to check the currently installed node version.
4. Type npm -v to check currently installed npm version.
5. Your primary problem was to install angular/cli
so  use command npm install -g @angular/cli this will install angular/cli globally.