NPM ERROR

.VSCode   clone 

Right-click on the folder and select git Bash Here. Enter the command git clone git address.

 
Then npm install downloads the dependencies in the directory with package.json and node_modules will be there

 

 


npm install reports an error that it cannot parse the dependency tree. You need to fix the above dependency conflicts or re-execute the npm install command, followed by --force or --legacy-peer-deps to accept incorrect (and possibly damaged) dependency resolution. .


So go and execute npm install --force

 

 

 

Guess you like

Origin blog.csdn.net/xy58451921/article/details/130358471