第 1 行:这个:找不到命令

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

我有一个问题。每当我尝试在我的 Windows 11 系统上运行任何 npx 命令时,我都会收到此错误

C:\用户\乔尔·马修 ode_modules.bin/../node/bin/node:第 1 行:这:找不到命令

我已经面对这个问题很长时间了,它仍然困扰着我。

$ npx -v

9.5.0

$ npm -v

9.5.0

$节点-v

v18.14.2

$ npx create-react-app 测试

C:\用户\乔尔·马修 ode_modules.bin/../node/bin/node:第 1 行:这:找不到命令

This image shows the error that is printed on my terminal after I run create-react-app .

node.js reactjs npm command npx
1个回答
0
投票

检查这个以确保安装了 npm npx:

npm --v
npx --v

试试这个:(卸载 create-react-app 包)

npm uninstall create-react-app
npm uninstall -g create-react-app
npm cache clean --force

然后:(全局安装 create-react-app)

npm install -g create-react-app

那么再试一次:

npx create-react-app my-app-name
© www.soinside.com 2019 - 2024. All rights reserved.