Good evening, I'm trying to start a react projet using the classic npx create-react-app <app-name>
, but I encounter the message :
You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1).
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
- yarn global remove create-react-app
So do I ! I run the next command as asked : npm uninstall -g create-react-app
, immediatly it returns me a up to date in 63ms
.
All seems good but if I try the create app command, it still send me the same error message ...
I tried with the yarn one too, same issue, I even uninstalled nodejs from my computer, reinstalled it, still same issue !
Running on windows.
Thanks you in advance.