-2

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
  • 21,997
  • 12
  • 75
  • 81
Enigma
  • 343
  • 2
  • 9
  • 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. – ChrisG Feb 08 '22 at 09:10

1 Answers1

0

Try following command:

npm install --legacy-peer-deps

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

Sven Märki
  • 65
  • 1
  • 8
  • 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