Home > Software engineering >  Problems running the npm install command to work with gulp
Problems running the npm install command to work with gulp

Time:06-30

I am going to work with a project that is working with Gulp, but when I run the npm install command, I get the following errors.

console error

CodePudding user response:

try to run the command with --force, or --legacy-peer-deps.

If it doesn't help, try to downgrade your nodejs version, probably a dependency issue.

CodePudding user response:

Try running the command again with the flag --force

  • Related