近来听了大漠先生分享的angular6的解说(附个链接大漠先生课程:http://www.ngfans.net/topic/2…),像是戈壁中发现了绿洲一样,决议好好学习一番,因而预备最先着手撸起代码来。起首须要做些预备装置angular-cli(window环境下的装置)的最新版本。
1.因为之前装置的是angular-cli v1的版本,须要卸载了,装置最新的版本。
npm uninstall -g @angular/cli 卸载旧版本cli。
npm cache clean 消灭缓存,确保卸载清洁
详细参考:https://blog.csdn.net/ittvibe/article/details/79062838
2.装置最新版本cli V6
npm i -g @angular/cli@latest
装置胜利后提醒:You are running version v6.9.2 of Node.js, which is not supported by Angular CLI v6.
The official Node.js version that is supported is 8.9 and greater.
意义是V6版的cli须要node版本最低V8.9,我之前的node是6.9.2的版本。因而用nvm来装置8.9的node版本。
先装置nvm,去https://github.com/coreybutle… 下载装置。在命令行输入:nvm -v搜检是不是装置胜利。装置胜利后,以下操纵:
nvm install v8.9.1 下载node的8.9.1的版本。
nvm use 8.9.1应用这个版本的node。
切换到8.9.1, 再运转node -v时,出现问题:
此软件没法运转,真是一波三折啊,(详细解决办法参考:https://github.com/coreybutle… ) 也可不经由过程nvm,而是去node官网下的版本8.10.0,然后用nvm切换到新版本的node,就能够最先使用angular-cli了。