尝试时出错:yarn create vite /yarn create vite my-react-app --template react

问题描述 投票:0回答:1

我已经使用命令

npm install --global yarn
在 Windows 10 中安装了纱线,并使用
yarn --version
检查了版本,它在 cmd 中显示版本信息。然后我尝试使用以下命令创建一个 vite 应用程序:
yarn create vite
但它在 cmd 中显示以下错误。如果您知道请给我解决方案。我尝试卸载并重新安装yarn,但发生了同样的错误。谢谢你。

这是cmd中的错误:

C:\DevProjects>yarn create vite
yarn create v1.22.19
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...

success Installed "[email protected]" with binaries:
      - create-vite
      - cva
[##] 2/2'C:\Users\Graphic' is not recognized as an internal or external command,
operable program or batch file.
error Command failed.
Exit code: 1
Command: C:\Users\Graphic Doctor\AppData\Local\Yarn\bin\create-vite
Arguments:
Directory: C:\DevProjects
Output:

info Visit https://yarnpkg.com/en/docs/cli/create for documentation about this command.

C:\DevProjects>
reactjs yarnpkg vite
1个回答
2
投票

我也遇到了同样的问题,但找不到通过 CLI 解决的方法。

如果你真的坚持使用 Vite/Yarn 组合,我是这样做的:

  1. 手动转到(这是您问题中的目录)C:\Users\Graphic Doctor\AppData\Local\Yarn i
© www.soinside.com 2019 - 2024. All rights reserved.