npm WARN … requires a peer of … but none is installed. You must install peer dependencies yourself

前端 未结 10 872
不知归路
不知归路 2020-11-29 15:44

I tried to run a project downloaded from github. Unfortunately, during npm install the following warnings were shown. I tried to change the version based on thi

10条回答
  •  既然无缘
    2020-11-29 16:34

    I had a similar issue and solved after running these instructions!

    npm install npm -g
    npm install --save-dev @angular/cli@latest
    npm install
    npm start
    

提交回复
热议问题