本文共 634 字,大约阅读时间需要 2 分钟。
由于公司要用NG-ZORRO,于是我就跑到官网先看看demo,怎么构建项目,执行的过程中发现了问题
执行官网构建项目命令
$ npm install -g @angular/cli
$ ng new PROJECT-NAMEYou are running version v7.6.0 of Node.js, which is not supported by Angular CLI v6.The official Node.js version that is supported is 8.9 and greater.Please visit https://nodejs.org/en/ to find instructions on how to update Node.js.
这时候提示我版本不支持,于是网上找了找教程,简单粗暴
1、查看当前版本
$ node -vv7.6.0
2、查看安装目录
$ where nodeD:\Program Files\nodejs\node.exe
$ node -vv10.12.0
1、查看当前版本
$ npm -v4.1.2
2、执行升级命令`npm install npm@latest -g
`3、再次查看版本$ npm -v6.4.1
好了,玩的开心
转载地址:http://tvwuo.baihongyu.com/