在 Ubuntu 16.04 中安装 grunt

在 Ubuntu 16.04 中安装 grunt

我正在尝试使用此命令在 Ubuntu 中安装 Grunt v1.0.0

sudo npm -g install grunt

或者

sudo npm -g install [email protected]

在这两种情况下,我都得到了

/usr/local/bin/grunt ->/usr/local/lib/node_modules/grunt/bin/grunt/usr/local/lib`-- [email protected] 

我已经安装了 Node.js 版本:4.2 和 Npm。

输出npm list -g

    /usr/local/lib
`-- [email protected]
  +-- [email protected]
  | `-- [email protected]
  |   +-- [email protected]
  |   | `-- [email protected]
  |   +-- [email protected]
  |   +-- [email protected]
  |   | `-- [email protected]
  |   |   +-- [email protected]
  |   |   `-- [email protected]
  |   +-- [email protected]
  |   `-- [email protected]
  +-- [email protected]
  +-- [email protected]
  | `-- [email protected]
  `-- [email protected]

当我用user@super:~$grunt

我得到了command not found回复。

我做错了什么?

谢谢

答案1

看起来您已通过 NPM 全局安装了 Grunt,但未安装 Grunt CLI,该 CLI 将“grunt”命令放入您的系统路径中。尝试以下操作:

npm install -g grunt-cli

请参阅此处的文档:https://gruntjs.com/getting-started#installing-the-cli

相关内容