4

我正在尝试安装 angular cli,但我收到了消息。如何为 nodejs v6.xx 安装特定的 angular cli 版本哪个 angular cli verion 适用于 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.
4

3 回答 3

17

我认为最后一个兼容的版本node 6.9.x@angular/cli@6.0.8 Check this for all versions

npm uninstall -g @angular/cli
npm cache clean --force
npm install -g @angular/cli@6.0.8
于 2018-08-01T08:23:01.440 回答
1

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

在此处输入图像描述

package.json 位于 Angular 项目的根目录中。它是在您执行时自动生成的npm init

于 2018-08-01T08:18:44.293 回答
-2

如果你想在你的系统上安装最新版本的 Node,你可以升级或卸载当前的 node 版本,然后下载并安装在官方 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.
于 2018-08-01T08:38:21.430 回答