无法使用Cli安装Angular2应用程序

时间:2017-06-07 13:16:57

标签: node.js angular npm angular-cli

我试过的解决方案

npm uninstall -g @angular/cli
npm cache clean
npm install -g @angular/cli@latest

但它对我不起作用。

是npm bug还是angular2。 enter image description here

请建议。

错误

unexpected end of input at 1:13267

我也试过了https://angular.io/docs/ts/latest/guide/setup.html

  • npm install不能正常工作 enter image description here

1 个答案:

答案 0 :(得分:2)

您可以尝试通过以下方式卸载错误的软件包:

npm uninstall -g angular-cli          # Remove global package
npm uninstall --save-dev angular-cli  # Remove from package.json

npm uninstall -g @angular/cli         # Remove global package
npm uninstall --save-dev @angular/cli # Remove from package.json

rm -rf node_modules dist # Use rmdir on Windows
npm cache clean

现在:

 npm install npm@latest -g                   #update npm
 npm install -g @angular/cli@latest          # Global package
 npm install --save-dev @angular/cli@latest  # Local package
 npm install                                 # Restore removed dependencies 

可在此处找到更多信息:https://github.com/angular/angular-cli/wiki/stories-1.0-update