我运行命令
npm install -g @angular/cli
我试过的解决方案
npm uninstall -g @angular/cli
npm cache clean
npm install -g @angular/cli@latest
但它对我不起作用。
请建议。
错误
unexpected end of input at 1:13267
答案 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