# 问题:
首先打开 Creact-react-app 的官方文档可以找到指令
npx create-react-app my-app --template [template-name]
打开终端运行命令之后
好吧本地版本太低了,再运行指令卸载吧
npm uninstall -g create-react-app
结果再次尝试还是报相同的错误,尝试用 yarn 去卸载
真的会谢
# 解决方法:
在 create-react-app 后面加上最新版本号,一定得是最新。如: create-react-app@5.0.1
最终命令 npx create-react-app@5.0.0 whale --template typescript
[tag class="badge-danger badge-pill"]Success![/tag]