在使用 ng new 新建Angular项目的时候会报一个错误:The Schematic workflow failed. See above.

The Schematic workflow failed. See above._javascript

解决办法:

只需要在后面加上 --skip-install 参数,就不会报错了。

ng new myapp --skip-install
  • 1.

The Schematic workflow failed. See above._开发语言_02