Home > Net >  Cannot install ReactMde dependency
Cannot install ReactMde dependency

Time:06-07

I'm building a notes app and for that I tried to install dependencies. One of them was react-mde. When I tried to install, it showed errors and was not able to install. here is the attached image of the errors I was getting while installing it: errors

CodePudding user response:

Try forcing an installation using "npm install --force" or running it using "npm i react-mde --force"

CodePudding user response:

It seems if the react-mde library is not compatible with version 18 of React.

Try to make a downgrade from your react version to v17 and retry install the react-mde package again.

  • Related