2017-06-07 16 views
2

ソリューションのコマンドを実行し、私は

npm uninstall -g @angular/cli 
npm cache clean 
npm install -g @angular/[email protected] 

を試みたが、それはdoesnの私のために働く。

これはnpmバグまたはangular2ですか。 enter image description here

をお勧めします。私もと試み

エラー

unexpected end of input at 1:13267 

https://angular.io/docs/ts/latest/guide/setup.html

  • NPMはあなたがで間違ったパッケージをアンインストールしようとすることができます enter image description here
+0

これに続くhttps://medium.com/@julyseven2002/how-to-install-angular-2-using-cli-on-windows-7-machine-e328199f4e5a私はそれが役に立つと思います – Ajay

+0

[この問題も参照してください](https://github.com/angular/angular-cli/issues/1045) – anoop

答えて

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 [email protected] -g     #update npm 
npm install -g @angular/[email protected]   # Global package 
npm install --save-dev @angular/[email protected] # Local package 
npm install         # Restore removed dependencies 

詳しい情報はここで見つけることができます:https://github.com/angular/angular-cli/wiki/stories-1.0-update

+2

ありがとうmobile32私の一日を保存するこれらのコマンドがすべてのユーザーの問題を解決することを願って – afeef

関連する問題