npm install error, solve the problem of npm install dependency error

Solve dependency errors

Clear the cache before installing:
  1. Clear the cache: npm cache clean --force
  2. Delete the wrong node_moudel
  3. Reinstall: npm install

command Description
npm config list View configuration
npm cache clean --force clear cache
npm install Installation dependencies

PS: It may also be a nodeversion problem

Guess you like

Origin blog.csdn.net/m0_46442996/article/details/109134725