4
votes

PS C:\Users\BM KHAN\react-guide> npm install --save radium npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: [email protected] npm ERR! Found: [email protected] npm ERR! node_modules/react npm ERR! react@"^17.0.0" from the root project npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer react@"^16.8.0" from [email protected] npm ERR! node_modules/radium npm ERR! radium@"*" from the root project npm ERR! npm ERR! Fix the upstream dependency conflict, or retry npm ERR! this command with --force, or --legacy-peer-deps npm ERR! to accept an incorrect (and potentially broken) dependency resolution. npm ERR! npm ERR! See C:\Users\BM KHAN\AppData\Local\npm-cache\eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\BM KHAN\AppData\Local\npm-cache_logs\2020-10-26T07_23_09_921Z-debug.log PS C:\Users\BM KHAN\react-guide>

3
@Raja jaganthan help me - BMKHAN
Welcome SO!, try to clear the cache with this command "npm cache clean --force" then do npm install - Raja Jaganathan
sir still encounter the same error - BMKHAN
Please read the error carefully. It is telling you what you can do to fix the error. - imran shoukat

3 Answers

7
votes

It worked for me , I was having the same problem

npm install --save radium --legacy-peer-deps

2
votes

This worked for me I also have the same problem. If we read the errors currently we can resolve them easily

enter image description here

npm install --save radium --legacy-peer-deps
0
votes