project_mern_memories icon indicating copy to clipboard operation
project_mern_memories copied to clipboard

npm ERR! Could not resolve dependency: peer react@"^16.8.0 || ^17.0.0" from @material-ui/[email protected]

Open AAdewunmi opened this issue 1 year ago • 2 comments

This post is for anyone who encounters the same issue.

Ran npm install @material-ui/core at console

Got the following output:

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@"^18.2.0" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.8.0 || ^17.0.0" from @material-ui/[email protected]
npm ERR! node_modules/@material-ui/core
npm ERR!   @material-ui/core@"*" 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.

Solved it by running npm install @material-ui/core --legacy-peer-deps

Check out the following stackoverflow post for more info:

[Could not resolve dependency error peer react@"^16.8.0 || ^17.0.0" from @material-ui/[email protected]](https://stackoverflow.com/questions/72596908/could-not-resolve-dependency-error-peer-react16-8-0-17-0-0-from-materia)

AAdewunmi avatar Nov 18 '23 12:11 AAdewunmi

Give it a try:

npm config set legacy-peer-deps true
npm i

codefromahmad avatar Jan 09 '24 07:01 codefromahmad

Give it a try:

npm config set legacy-peer-deps true
npm i
  1. npm config set legacy-peer-deps true
  2. npm install Results: npm ERR! Invalid Version:

npm ERR! A complete log of this run can be found in: C:\Users\Cyber World\AppData\Local\npm-cache_logs\2024-08-13T10_06_33_200Z-debug-0.log

ABDULHAMEED-10 avatar Aug 13 '24 10:08 ABDULHAMEED-10