'rollup' 未被识别为内部或外部命令

'rollup' is not recognized as an internal or external command

我想问一下我应该如何解决这个问题,因为我已经对这部分感到困惑和困惑。我已经使用这个命令全局安装了 rollup

npm install --global rollup

然而,当我尝试 运行 'rollup' 命令时,我应该期望汇总信息或某些内容会显示在我的 CLI 中?但我的 CLI 显示

'rollup' is not recognized as an internal or external command, operable program or batch file.

到目前为止我所做的是。

  1. 更新了 NPM
  2. 全局重新安装汇总。

我已经阅读了一些文档,但问题仍然是 showing.https://github。com/Esri/ago-assistant/issues/176

请赐教。 谢谢

  1. 尝试重新启动您的终端

  2. 尝试定位 Rollup 二进制文件的安装位置 %AppData%\npm\node_modules%AppData%\roaming\npm\node_modules 运行 手动点赞

    %AppData%\npm\node_modules\rollup\bin\rollup.exe

我刚刚对 运行 全局脚本所做的。

我刚刚使用 NPM 在 package.json 到 运行 汇总中添加了这些脚本。

 "scripts": {
"rollup": "rollup" 

这样可以吗?