Home > Net >  I am getting error while installing material ui in cmd for react .I am using this command npm i @mat
I am getting error while installing material ui in cmd for react .I am using this command npm i @mat

Time:12-02

erros: A:\react\reactJS\awesomeapp>npm i @material-ui/icons

up to date, audited 1870 packages in 7s

59 vulnerabilities (47 moderate, 11 high, 1 critical)

To address issues that do not require attention, run: npm audit fix enter image description here To address all issues (including breaking changes), run: npm audit fix --force

Run npm audit for details.

CodePudding user response:

Try running

npm audit fix

If it did't work, try

npm install @material-ui/icons --no-audit

CodePudding user response:

Looks Like @material-ui/icons is already installed!.try uninstalling it and reinstalling it

If that does not work try typing npm audit and npm audit fix! and try again

  • Related