create-react-app失败

好久没有新建一个新项目了,一开始按照react官方文档来看的话,是需要npx create-react-app my-app 直接就可以创建成功的

但是执行了之后


所以开始在网上疯狂找原因,按照官方指路,https://create-react-app.dev/docs/getting-started#npm这里描述的是需要全局删除create-react-app,试了几次 npm uninstall -g create-react-app,都报错,之后直接执行sudo npm uninstall -g create-react-app, 总算删掉了create-react-app

删掉之后就需要重新下载create-react-app, 直接使用npm i -g  create-react-app,又一次失败,查找了一下原因,发现需要使用 cnpm 才可以, 因此又重新下载国内淘宝镜像,重新试了一下,这下可以了重新下载了,觉得我又可以了,重新跑 npx create-react-app myapp,发现还是报一开始的错误,查看了一下create-react-app 版本号,给提示了,


按照官方提示,直接执行  create-react-app myapp ,最后终于成功了

你可能感兴趣的:(create-react-app失败)