"You are running create-react-app 4.0.3 which is behind the latest release (5.0.0)"
"You are running create-react-app 4.0.3 which is behind the latest release (5.0.0)"
我在创建 React 应用程序时遇到错误。我该如何解决?
已修复。我做 npx create-react-app@5.0.0 my-app
.
参考:
解决了。通过使用此代码:
npx create-react-app@5.0.0 my-app
如果不行,用这个再试一次:
从C:\Users\your_pc_name\AppData\Roaming\npm-
缓存中删除所有内容
这可能是本地缓存问题。在终端中使用管理员模式尝试命令 npm cache clean --force
,然后使用相同的命令重试 - npx create-react-app my-app
.
npx clear-npx-cache
为我工作。
尝试 npx clear-npx-cache
清除您的 npx 缓存,然后 运行 npx create-react-app your-app。
此外,可能值得尝试强制使用最新版本:
npx create-react-app@latest my-app --use-npm
您是 运行 create-react-app
4.0.3,落后于最新版本 (5.0.0)。
我们不再支持全局安装 Create React App。
这有效--npx create-react-app@5.0.0 my-app
尝试运行这个:
npx clear-npx-cache
按照这个:
npm uninstall -g create-react-app
npm cache clean --force”
npm cache verify
npx create-react-app my-app
我在创建 React 应用程序时遇到错误。我该如何解决?
已修复。我做 npx create-react-app@5.0.0 my-app
.
参考:
解决了。通过使用此代码:
npx create-react-app@5.0.0 my-app
如果不行,用这个再试一次:
从C:\Users\your_pc_name\AppData\Roaming\npm-
缓存中删除所有内容
这可能是本地缓存问题。在终端中使用管理员模式尝试命令 npm cache clean --force
,然后使用相同的命令重试 - npx create-react-app my-app
.
npx clear-npx-cache
为我工作。
尝试 npx clear-npx-cache
清除您的 npx 缓存,然后 运行 npx create-react-app your-app。
此外,可能值得尝试强制使用最新版本:
npx create-react-app@latest my-app --use-npm
您是 运行 create-react-app
4.0.3,落后于最新版本 (5.0.0)。
我们不再支持全局安装 Create React App。
这有效--npx create-react-app@5.0.0 my-app
尝试运行这个:
npx clear-npx-cache
按照这个:
npm uninstall -g create-react-app
npm cache clean --force”
npm cache verify
npx create-react-app my-app