-1

I cloned a repository from github and after that i tried to run "npm install" but i keep getting this error:

enter image description here

the project is still under development, so do i need to install or add anything in order to run it?

juliomalves
  • 42,130
  • 20
  • 150
  • 146
Enigma
  • 353
  • 4
  • 14
  • 3
    Does this answer your question: [What does npm install --legacy-peer-deps do exactly? When is it recommended / What's a potential use case?](https://stackoverflow.com/questions/66239691/what-does-npm-install-legacy-peer-deps-do-exactly-when-is-it-recommended-wh)? Run `npm install --legacy-peer-deps`. – juliomalves Feb 08 '22 at 09:07
  • 1
    The error message says "retry this command ..." did you try that? Also, please don't post images of text. –  Feb 08 '22 at 09:10

1 Answers1

1

Try following command:

npm install --legacy-peer-deps

It tells NPM to ignore peer deps and proceed with the installation anyway.

Sven Märki
  • 189
  • 1
  • 12
  • https://stackoverflow.com/questions/66239691/what-does-npm-install-legacy-peer-deps-do-exactly-when-is-it-recommended-wh – CodeFinity May 11 '22 at 21:02