错误 运行 npx create-strapi-starter 我的项目 gatsby-blog

Error running npx create-strapi-starter my-project gatsby-blog

我一直在关注 Strapi 的 Quick Start Guide,您可以在其中使用启动器通过 运行 创建带有 Gatsby 的项目:

npx create-strapi-starter my-project gatsby-blog

后端部分安装了所有依赖项,但前端部分失败并显示此消息:

Error: Command failed with exit code 1: npm install
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: gatsby-starter-default@0.1.0
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR!   react@"^17.0.1" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^15.0.0 || ^16.0.0" from react-markdown@4.3.1
npm ERR! node_modules/react-markdown
npm ERR!   react-markdown@"^4.3.1" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /Users/ronald/.npm/eresolve-report.txt for a full report.

我正在使用 Mac 节点 v14.17.1 和 NPM 7.24.0

我认为您需要安装对等依赖项,因为版本之间有些不匹配。

比如React需要在^15.0.0^16.0.0之间找到一个17.0.2:

npm ERR! Found: react@17.0.2

尝试将每个版本降级到相应的版本,或者只是 运行 使用 --legacy-peer-deps 标志的命令。在前端项目的根目录下 运行:

npm install --legacy-peer-deps

你甚至可以用原来的命令试试:

npx create-strapi-starter my-project gatsby-blog