我正在尝试使用create-react-app
创建一个React项目,它显示了一个奇怪的错误。
这是错误的图像。
Install Cmd Code Img - Node Version Image Img
我更改了节点版本,清除了缓存并重试。但是仍然出现相同的错误。
我将非常感激任何形式的帮助。提前谢谢。你应该写npx create-react-app
问题是您已经全局安装了create-react-app
。
我猜你一定是用npm install -g create-react-app
安装的。
并且记住create-react-app
不应该被全局安装。看看他们的官方网站。
明白了吗?那就清澈见底吧
使用npm uninstall -g create-react-app
删除已安装的。使用npx create-react-app
代替create-react-app
。
对于您的情况,npx create-react-app testing
。