Home > Blockchain >  How can I fix my react installation problem?
How can I fix my react installation problem?

Time:12-16

You are running create-react-app 4.0.3, which is behind the latest release (5.0.0).

We no longer support global installation of Create React App.

Please remove any global installs with one of the following commands:

  • npm uninstall -g create-react-app

CodePudding user response:

What happens when you run this ?

npm uninstall -g create-react-app
  • Related