我在本地和全局都安装了 grunt-cli,我可以在本地和全局路径中看到相同的内容。
为了测试安装是否有效,当我尝试运行时
grunt -h
它显示以下
>> Local Npm module "grunt-cli" not found. Is it installed?
Grunt: The JavaScript Task Runner (v0.4.5)
Usage
grunt [options] [task [task ...]]
Options
--help, -h Display this help text.
--base Specify .......
当我运行 grunt -v 时,以下是其输出的一部分
Registering "grunt-cli" local Npm module tasks.
Reading /Users/cominventor/myproject/node_modules/grunt-cli/package.json...OK
Parsing /Users/cominventor/myproject/node_modules/grunt-cli/package.json...OK
>> Local Npm module "grunt-cli" not found. Is it installed?
要在本地安装,我运行了以下命令(@Aruna 建议)
npm install grunt --save-dev
npm install grunt-cli --save-dev
并得到第二个命令的以下输出
npm ERR! Darwin 16.0.0
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "grunt-cli" "--save-dev"
npm ERR! node v6.6.0
npm ERR! npm v3.10.7
npm ERR! code ENOSELF
npm ERR! Refusing to install grunt-cli as a dependency of itself
npm ERR!
任何线索我在这里错过了什么?