我使用Homebrew安装Node.js,然后使用npm install
安装Grunt及其依赖项,但在安装完成后,我无法运行Grunt:
zsh: correct 'grunt' to 'grn' ÆnyaeÅ? n
zsh: command not found: grunt
安装Grunt的正确方法是什么,所以我没有收到此错误?
答案 0 :(得分:21)
要在命令行上使用Grunt,您必须安装命令行界面:
npm install -g grunt-cli
-g
标志用于全局安装模块,这也将为Grunt创建一个PATH变量。
答案 1 :(得分:3)
npm install -g grunt-cli => This will put the grunt command in your system path