Angular 6安装 - 某些软件包

时间:2018-05-07 22:57:06

标签: angular

我遇到角度6的问题,有些包显示为<error>

ng -v

enter image description here

因此我无法创建项目。可能是什么问题?

2 个答案:

答案 0 :(得分:0)

可能是typescript 2.8.3依赖的问题。我不得不做同样的事情。命令是:

Update manually the angular packages to 6.0.0
ng update rxjs
ng update angular/core
ng update angular/material

如果ng update安装了typescript 2.8.3,则必须安装typescript版本2.7.2。角度编译器不适用于2.8.3

Check here原始参考。

答案 1 :(得分:0)

尝试再次卸载并安装angular cli:

npm uninstall -g @angular/cli
npm cache verify

# if npm version is < 5 then use `npm cache clean`
npm install -g @angular/cli@latest