npm install -g grunt-cli 似乎可以工作,但找不到命令

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

我使用

npm install -g grunt-cli
安装了grunt,然后它只写:


changed 56 packages in 4s

5 packages are looking for funding
  run `npm fund` for details

当我之后尝试使用 grunt 时

grunt --version
它说:
bash: grunt: command not found

我尝试手动将其添加到我的路径中,但是

C:\Users\{username}\AppData\Roaming

下没有npm目录

如果我这样做

npm ls -g
那么我会得到以下输出:

C:\Users\{username}\AppData\Local\Volta\tools\image\node\20.15.1
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]

我该如何解决这个问题?

npm gruntjs
1个回答
0
投票

其实我没有在全局运行成功,但是我运行成功了

yarn run grunt [my command]

© www.soinside.com 2019 - 2024. All rights reserved.